Advertisement
Instance_YT

Crawl Script

Apr 20th, 2021
2,944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local Mouse = player:GetMouse()
  3. local Animate
  4. local Humanoid = player.Character:FindFirstChild("Humanoid")
  5.  
  6. Mouse.KeyDown:Connect(function(Key)
  7. if Key == "c" then
  8. local Anim = Instance.new("Animation",player.Character)
  9. Anim.AnimationId = "rbxassetid://YOUR ID"
  10.  
  11. Animate = Humanoid:LoadAnimation(Anim)
  12. Animate:Play()
  13. end
  14. end)
  15.  
  16. Mouse.KeyUp:Connect(function(Key)
  17. if Key == "c" then
  18. Animate:Stop()
  19. end
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement