Advertisement
xxPH4NTOM

Untitled

Sep 5th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local char = game.workspace:FindFirstChild(game.Players.LocalPlayer.Name)
  2.  
  3. if char then
  4. if char:FindFirstChild("Uniform") then
  5. char:WaitForChild("Uniform"):Destroy()
  6. end
  7. end
  8.  
  9. for i,v in pairs(char:GetDescendants()) do
  10. if v:IsA('SpecialMesh') or v.Name:lower():find('mesh') then
  11. v:Destroy()
  12. end
  13. end
  14.  
  15. local Anim = Instance.new("Animation")
  16. Anim.AnimationId = "rbxassetid://33796059"
  17. local track1 = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  18.  
  19.  
  20.  
  21. wait()
  22. --]]
  23. local Anim = Instance.new("Animation")
  24. Anim.AnimationId = "rbxassetid://35154961"
  25. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  26.  
  27.  
  28. while wait() do
  29. if track1 then
  30. track1:Play(.1, 1, 1e8)
  31. end
  32. track1 = nil
  33. for i = 1,100 do
  34. track:Play(.5, 1, 1e6)
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement