Advertisement
ERROR_CODE

Untitled

Oct 27th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. local Players = game:FindService("Players") or game:GetService("Players")
  2. local Player = Players.LocalPlayer
  3. local Backpack = Player.Backpack
  4.  
  5. local Character = Player.Character
  6. local Humanoid = Character:FindFirstChildWhichIsA("Humanoid")
  7.  
  8. local SiegHeil = Instance.new("Tool", Backpack)
  9. SiegHeil.Name = "Sieg Heil"
  10. SiegHeil.CanBeDropped = false
  11. SiegHeil.RequiresHandle = false
  12. SiegHeil.ToolTip = "Slaughter The Jews!"
  13.  
  14. local Anim = Instance.new("Animation", Character)
  15. Anim.AnimationId = "rbxassetid://"..Id
  16. Anim = Humanoid:LoadAnimation(Anim)
  17.  
  18. SiegHeil.Equipped:Connect(function()
  19. Anim:Play()
  20. Anim:AdjustSpeed(0)
  21. Anim.TimePosition = .1
  22. end)
  23.  
  24. SiegHeil.Unequipped:Connect(function()
  25. Anim:Stop()
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement