Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Time Stop Again script by basstracker1970
- plr = game:service'Players'.LocalPlayer
- char = plr.Character
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(k)
- if k == "z" then
- sound = Instance.new("Sound",char)
- sound.SoundId = "rbxassetid://849861238"
- sound:Play()
- for i,v in next, game.Players:GetChildren() do
- v.Character.Torso.Anchored = true
- if v.Character.Torso.Anchored == false then --Add R15 Support
- v.Character.UpperTorso.Anchored = true
- end
- end
- end
- end)
- mouse.KeyDown:connect(function(k)
- if k == "x" then
- for i,v in next, game.Players:GetChildren() do
- v.Character.Torso.Anchored = false
- if v.Character.Torso.Anchored == false then --R15 Support Again
- v.Character.UpperTorso.Anchored = false
- end
- end
- end
- end)
- while true do
- wait(0)
- if plr.Character.Torso.Anchored == true then
- plr.Character.Torso.Anchored = false
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement