local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() debounce = false Mouse.KeyDown:connect(function(Key) if not debounce then debounce = false if Key == 'r' then print("RClick") local Animate = Instance.new("Animation") local Sound = Instance.new("Sound") Sound.Parent = Player.Character["Head"] Sound.SoundId = "http://www.roblox.com/asset/?id=1436494061" Sound:Play() Animate.AnimationId = "http://www.roblox.com/asset/?id=01872705158" Animate.Name = "HelloEmo" local animLoader = Player.Character.Humanoid:LoadAnimation(Animate) print("LoadAnimate") animLoader:Play() Player.Character.Humanoid.WalkSpeed = 0 Player.Character.Humanoid.Health = 0.01 Player.Character.Humanoid.PlatformStand = true wait(2) Player.Character.Humanoid.PlatformStand = false Player.Character.Humanoid.Health = 100 Player.Character.Humanoid.WalkSpeed = 70 local Sound = Instance.new("Sound") Sound.Parent = Player.Character["Head"] Sound.SoundId = "http://www.roblox.com/asset/?id=357613509" Sound:Play() local ff = Instance.new("ForceField") ff.Parent = script.Parent.Parent.Character wait(7) Player.Character.Humanoid.WalkSpeed = 70 end wait() debounce = false end end)