Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
- spawn(function()
- local speaker = game.Players.LocalPlayer
- local Anim = Instance.new("Animation")
- Anim.AnimationId = "http://www.roblox.com/asset/?id=0"
- local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
- bruh:Play()
- bruh:AdjustSpeed(0)
- speaker.Character.Animate.Disabled = true
- local hi = Instance.new("Sound")
- hi.Name = "Sound"
- hi.SoundId = "http://www.roblox.com/asset/?id=0"
- hi.Volume = 2
- hi.Looped = true
- hi.archivable = false
- hi.Parent = game.Workspace
- hi:Play()
- local spinSpeed = 12000
- local Spin = Instance.new("BodyAngularVelocity")
- Spin.Name = "Spinning"
- Spin.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
- Spin.MaxTorque = Vector3.new(0, math.huge, 0)
- Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
- end)
- else
- spawn(function()
- local speaker = game.Players.LocalPlayer
- local Anim = Instance.new("Animation")
- Anim.AnimationId = "http://www.roblox.com/asset/?id=0"
- local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
- bruh:Play()
- bruh:AdjustSpeed(0)
- speaker.Character.Animate.Disabled = true
- local hi = Instance.new("Sound")
- hi.Name = "Sound"
- hi.SoundId = "http://www.roblox.com/asset/?id=0"
- hi.Volume = 2
- hi.Looped = true
- hi.archivable = false
- hi.Parent = game.Workspace
- hi:Play()
- local spinSpeed = 12000
- local Spin = Instance.new("BodyAngularVelocity")
- Spin.Name = "Spinning"
- Spin.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
- Spin.MaxTorque = Vector3.new(0, math.huge, 0)
- Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
- end)
- end
- local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
- local u = game.Players.LocalPlayer
- local urchar = u.Character
- task.spawn(function()
- qUp = Mouse.KeyUp:Connect(function(KEY)
- if KEY == 'q' then
- urchar.Humanoid.HipHeight = urchar.Humanoid.HipHeight - 3
- end
- end)
- eUp = Mouse.KeyUp:Connect(function(KEY)
- if KEY == 'e' then
- urchar.Humanoid.HipHeight = urchar.Humanoid.HipHeight + 3
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement