Advertisement
EliahWT

Noclip And Superspeed script

Mar 15th, 2021
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. --[[
  2. Made by PresidentIvan!
  3. --]]
  4.  
  5. local player = game.Players.LocalPlayer
  6. local mouse = player:GetMouse()
  7. local runservice = game:GetService("RunService")
  8. local noclip = false
  9.  
  10. local msg = Instance.new("Message", player.PlayerGui)
  11. msg.Text = "Noclip Script by PresidentIvan! Press on 'e' to noclip & 't' to destroy this message!"
  12.  
  13. runservice.Stepped:Connect(function()
  14. if noclip then
  15. player.Character.Humanoid:ChangeState(11)
  16. end
  17. end)
  18. mouse.KeyDown:Connect(function(key)
  19. if key == "t" then
  20. msg:Destroy()
  21. end
  22. end)
  23.  
  24. mouse.KeyDown:Connect(function(key)
  25. if key == "e" then
  26. noclip = true
  27. player.Character.Humanoid:ChangeState(11)
  28. end
  29. end)
  30. repeat wait() until game.Players.LocalPlayer
  31. local Mouse = game.Players.LocalPlayer:GetMouse()
  32. local Plr = game.Players.LocalPlayer
  33.  
  34. Mouse.KeyDown:connect(function(KeyDown)
  35. if KeyDown == "0" then
  36. Plr.Character.Humanoid.WalkSpeed = 190
  37. end
  38. end)
  39.  
  40. Mouse.KeyUp:connect(function(KeyUp)
  41. if KeyUp == "0" then
  42. Plr.Character.Humanoid.WalkSpeed = 190
  43. end
  44. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement