Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. -- _____ _____ _ _ _____ _____ _____ ______ ___________ _____
  2. --/ ___|_ _| \ | | __ \ / ___/ __ \| ___ \_ _| ___ \_ _|
  3. --\ `--. | | | \| | | \/ \ `--.| / \/| |_/ / | | | |_/ / | |
  4. -- `--. \ | | | . ` | | __ `--. \ | | / | | | __/ | |
  5. --/\__/ /_| |_| |\ | |_\ \ /\__/ / \__/\| |\ \ _| |_| | | |
  6. --\____/ \___/\_| \_/\____/ \____/ \____/\_| \_|\___/\_| \_/
  7.  
  8.  
  9.  
  10.  
  11. --Script made by YouthfulPat501
  12. wait(1)
  13.  
  14. sound = Instance.new('Sound')
  15.  
  16. sound.Parent = game.Workspace.YOURUSERNAME.Head
  17.  
  18. sound.SoundId = "rbxassetid://3807239428"--The song ID
  19.  
  20. sound:Play()
  21.  
  22. game.Workspace.RecycleBicycle.Head.face.Texture = "http://www.roblox.com/asset/?id=162300397"--Face texture
  23.  
  24. A = Instance.new("Animation")
  25. A.AnimationId = "rbxassetid://4576722785"--Animation ID
  26.  
  27. local char = game.Workspace.RecycleBicycle --You
  28. local hum = char:WaitForChild("Humanoid") --Your humanoid
  29. local animation = hum:LoadAnimation(A) --Finds the animation inside the script and loads it in the npc's humanoid
  30.  
  31. if char ~= nil then --This just checks if You are in the game
  32. animation:Play() --Plays the animation
  33. end
  34.  
  35. --I recommend using looped animations for the best experience
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement