View difference between Paste ID: ije0g6Hq and bbN3T4wa
SHOW: | | - or go back to the newest paste.
1
--Time Stop Again script by basstracker1970
2
plr = game:service'Players'.LocalPlayer
3
4
char = plr.Character
5
6
mouse = plr:GetMouse()
7
8
mouse.KeyDown:connect(function(k)
9
if k == "z" then
10
sound = Instance.new("Sound",char)
11-
sound.SoundId = "rbxassetid://849861238"
11+
sound.SoundId = "rbxassetid://138030962"
12
sound:Play()
13
for i,v in next, game.Players:GetChildren() do
14
v.Character.Torso.Anchored = true
15
if v.Character.Torso.Anchored == false then --Add R15 Support
16
v.Character.UpperTorso.Anchored = true
17
end
18
end
19
end
20
end)
21
mouse.KeyDown:connect(function(k)
22
if k == "x" then
23
for i,v in next, game.Players:GetChildren() do
24
v.Character.Torso.Anchored = false
25
if v.Character.Torso.Anchored == false then --R15 Support Again
26
v.Character.UpperTorso.Anchored = false
27
end
28
end
29
end
30
end)
31
while true do
32
wait(0)
33
if plr.Character.Torso.Anchored == true then
34
plr.Character.Torso.Anchored = false
35
end
36
end