Facebook
From Sweltering Earthworm, 2 Years ago, written in Plain Text.
This paste is a reply to Press e to noclip from Ja - go back
Embed
Viewing differences between Press e to noclip and Re: Press e to noclip
noclip = false
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 == "e" then
noclip = not noclip
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end
end)
print('Loaded')
print('Press "E" to noclip')