RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a moving platform that will carry the player forward and then return"
-- server script local platform = game.Workspace.Platform local start = platform.Position local end = start + Vector3.new(0,0,50) while true do platform:MoveTo(end) wait(5) platform:MoveTo(start) wait(5) end