Advertisement
DylanD2003

Untitled

Nov 8th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. local AudioID = 282257173
  2.  
  3. local Sound = Instance.new("Sound", game.Workspace)
  4. Sound.SoundId = "http://www.roblox.com/asset/?id="..AudioID
  5. Sound.Looped = true
  6. local DanceID = "http://www.roblox.com/asset/?id=129423131"
  7.  
  8. function ChangeAnimate()
  9. for i,v in pairs(game.Players:GetChildren()) do
  10. v.Character.Animate.idle.Animation1.AnimationId = DanceID
  11. v.Character.Animate.idle.Animation2.AnimationId = DanceID
  12. v.Character.Animate.walk.WalkAnim.AnimationId = DanceID
  13. end
  14. end
  15.  
  16. wait(0.1)
  17. Sound:Play()
  18.  
  19. while true do
  20. wait(0.1)
  21. ChangeAnimate()
  22. game.Lighting.OutdoorAmbient = Color3.new(math.random(), math.random(), math.random())
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement