KH0NL

Roblox Spinner Script

Jun 1st, 2022
3,641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. --Made by KH0NL
  2. --Spinner Script
  3.  
  4. --Makes you spin very fast and being able to fling people.
  5. local Speed = 1000000 -- How fast you want to spin
  6. local LocalPlayer = game.Players.LocalPlayer
  7. local Char = workspace:FindFirstChild(LocalPlayer.Name)
  8. local RootPart = Char:WaitForChild("HumanoidRootPart")
  9. local Torque = Instance.new("Torque")
  10. Torque.Enabled = true
  11. Torque.Torque = Vector3.new(0,Speed,0)
  12. Torque.Parent = RootPart
  13. local Attachment = Instance.new("Attachment")
  14. Attachment.Parent = RootPart
  15. Attachment.Position = RootPart.Position
  16. Torque.Attachment0 = Attachment
Advertisement
Add Comment
Please, Sign In to add comment