Advertisement
Runixer

Untitled

Feb 6th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. function WalkSpeed(value)
  2. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
  3. end
  4. function JumpPower(value2)
  5. game.Players.LocalPlayer.Character.Humanoid.JumpPower = value2
  6. end
  7. function HipHeight(value3)
  8. game.Players.LocalPlayer.Character.Humanoid.HipHeight = value3
  9. end
  10. function Health(Health)
  11. game.Players.LocalPlayer.Character.Humanoid.Health = Health
  12. end
  13. function Reset()
  14. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  15. end
  16. function Naked()
  17. game.Players.LocalPlayer.Character.Shirt:Remove()
  18. game.Players.LocalPlayer.Character.Pants:Remove()
  19. end
  20. function Noclip()
  21. local noclip = true
  22. G = game
  23. char = G.Players.LocalPlayer.Character
  24. repeat
  25. if noclip == true then
  26. for _,v in pairs(char:children()) do
  27. pcall(function()
  28. if v.className == "Part" then
  29. v.CanCollide = false
  30. elseif v.ClassName == "Model" then
  31. v.Head.CanCollide = false
  32. end
  33. end)
  34. end
  35. end
  36. G:service("RunService").Stepped:wait()
  37. until char.Humanoid.Health == 0
  38. end
  39. if Sit then
  40. game.Players.LocalPlayer.Character.Humanoid.Sit = true
  41. end
  42. if Jump then
  43. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement