RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a wall fly"
-- server script (ServerScriptService) local wall = game.Workspace.Wall local flyHeight = 50 local flySpeed = 1 while true do wall.Position = wall.Position + Vector3.new(0, flySpeed, 0) if wall.Position.Y >= flyHeight then flySpeed = -1 elseif wall.Position.Y <= 0 then flySpeed = 1 end wait() end