Advertisement
Guest User

fixxed spin

a guest
Mar 18th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. -- Spin script
  2.  
  3. power = 500 -- change this to make it more or less powerful
  4.  
  5. game:GetService('RunService').Stepped:connect(function()
  6. game.Players.LocalPlayer.Character.Head.CanCollide = true
  7. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = true
  8. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = true
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = true
  10. end)
  11. wait(.1)
  12. local bambam = Instance.new("BodyThrust")
  13. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  14. bambam.Force = Vector3.new(power,0,power)
  15. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  16.  
  17. -- Noclip Script
  18.  
  19. local noclip = false -- Gets if you want the noclip
  20. char = game.Players.LocalPlayer.Character -- Gets your player
  21. while true do -- Make sure someone is in game
  22. if noclip == true then
  23. for _,v in pairs(char:children()) do
  24. pcall(function()
  25. if v.className == "Part" then
  26. v.CanCollide = true
  27. end
  28. end)
  29. end
  30. end
  31. game:service("RunService").Stepped:wait()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement