RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"wait 5 seconds and use pivot to make a model 100 z coordinates for 10 seconds"
-- server script local model = game.Workspace.YourModelNameHere -- replace with your model's name wait(5) local pivot = model:GetPivot() model:PivotTo(pivot + Vector3.new(0, 0, 100)) wait(10) model:PivotTo(pivot) -- reset to original position after 10 seconds