Advertisement
Ubicast

Old NoClip Script | ROBLOX

Nov 21st, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local Mouse = Player:GetMouse()
  3.  
  4. local NoClip_Enabled = false
  5. local Key = "e"
  6.  
  7. game:GetService('RunService').Stepped:Connect(function()
  8.     if NoClip_Enabled == true then
  9.         Player.Character.Humanoid:ChangeState(11)
  10.     end
  11. end)
  12.  
  13. Mouse.KeyDown:Connect(function(key)
  14.     if key == Key then
  15.         NoClip_Enabled = not NoClip_Enabled
  16.         Player.Character.Humanoid:ChangeState(11)
  17.     end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement