RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a generic time stop script"
local part = script.Parent local canStopTime = true local function stopTime(otherPart) local partParent = otherPart.Parent local humanoid = partParent:FindFirstChildWhichIsA('Humanoid') if humanoid and canStopTime then canStopTime = false game.Workspace.Gravity = 0 for _, v in pairs(game.Workspace:GetChildren()) do if v:IsA('Part') then v.Velocity = Vector3.new(0,0,0) v.RotVelocity = Vector3.new(0,0,0) end end wait(3) game.Workspace.Gravity = 196.2 canStopTime = true end end part.Touched:Connect(stopTime)