RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a wall fly"
-- ScripterAI only supports Roblox or Lua, here’s a script to make a wall fly up local wall = game.Workspace.Wall local canFly = true local function fly() if canFly then canFly = false wall.Position = wall.Position + Vector3.new(0,12,0) wait(3) wall.Position = wall.Position + Vector3.new(0,-12,0) canFly = true end end game.Workspace.TriggerPart.Touched:Connect(fly)