Advertisement
zhangfengshan

转圈圈

Feb 12th, 2023 (edited)
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  2. spawn(function()
  3. local speaker = game.Players.LocalPlayer
  4. local Anim = Instance.new("Animation")
  5. Anim.AnimationId = "http://www.roblox.com/asset/?id=0"
  6. local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  7. bruh:Play()
  8. bruh:AdjustSpeed(0)
  9. speaker.Character.Animate.Disabled = true
  10. local hi = Instance.new("Sound")
  11. hi.Name = "Sound"
  12. hi.SoundId = "http://www.roblox.com/asset/?id=0"
  13. hi.Volume = 2
  14. hi.Looped = true
  15. hi.archivable = false
  16. hi.Parent = game.Workspace
  17. hi:Play()
  18.  
  19. local spinSpeed = 12000
  20. local Spin = Instance.new("BodyAngularVelocity")
  21. Spin.Name = "Spinning"
  22. Spin.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  23. Spin.MaxTorque = Vector3.new(0, math.huge, 0)
  24. Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
  25.  
  26. end)
  27. else
  28. spawn(function()
  29. local speaker = game.Players.LocalPlayer
  30. local Anim = Instance.new("Animation")
  31. Anim.AnimationId = "http://www.roblox.com/asset/?id=0"
  32. local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  33. bruh:Play()
  34. bruh:AdjustSpeed(0)
  35. speaker.Character.Animate.Disabled = true
  36. local hi = Instance.new("Sound")
  37. hi.Name = "Sound"
  38. hi.SoundId = "http://www.roblox.com/asset/?id=0"
  39. hi.Volume = 2
  40. hi.Looped = true
  41. hi.archivable = false
  42. hi.Parent = game.Workspace
  43. hi:Play()
  44.  
  45. local spinSpeed = 12000
  46. local Spin = Instance.new("BodyAngularVelocity")
  47. Spin.Name = "Spinning"
  48. Spin.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  49. Spin.MaxTorque = Vector3.new(0, math.huge, 0)
  50. Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
  51.  
  52.  
  53. end)
  54. end
  55. local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
  56. local u = game.Players.LocalPlayer
  57. local urchar = u.Character
  58.  
  59. task.spawn(function()
  60.  
  61.  
  62. qUp = Mouse.KeyUp:Connect(function(KEY)
  63. if KEY == 'q' then
  64. urchar.Humanoid.HipHeight = urchar.Humanoid.HipHeight - 3
  65. end
  66. end)
  67. eUp = Mouse.KeyUp:Connect(function(KEY)
  68. if KEY == 'e' then
  69. urchar.Humanoid.HipHeight = urchar.Humanoid.HipHeight + 3
  70. end
  71. end)
  72.  
  73.  
  74. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement