Facebook
From Tiny Porcupine, 2 Years ago, written in Plain Text.
This paste is a reply to Re: Press e to noclip from Lousy Kitten - go back
Embed
Viewing differences between Re: Press e to noclip and Re: Re: Press q to noclip
noclip = false
q
game:GetService('RunService').Stepped:connect(function()
if noclip then
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end
end)
plr = game.Players.LocalPlayer
mouse = plr:GetMouse()
mouse.KeyDown:connect(function(key)

if key == "q" then
noclip = not noclip
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end
end)
print('Loaded')
print('Press "q" to noclip')

Replies to Re: Re: Press q to noclip rss

Title Name Language When
Re: Re: Re: Press q to noclip Tinct Prairie Dog text 2 Years ago.