RiasGremory0100

Toads.

Apr 21st, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. del = coroutine.create(function()
  2. while wait(0.3) do
  3. for i,v in pairs(workspace:GetChildren()) do
  4. if v:IsA("Model") then
  5. nil
  6. end
  7. end
  8. end
  9. end)
  10.  
  11.  
  12.  
  13. for i,v in pairs(game.Players:GetChildren()) do
  14. end
  15.  
  16. sound = coroutine.create(function()
  17. a = Instance.new("Sound",workspace)
  18. a.SoundId = "rbxassetid://169505671"
  19. a.Name = "RAINING MEN"
  20. a.Volume = 58359
  21. a.Looped = true
  22. a:Play()
  23. while wait(0.2) do
  24. rainin = workspace:FindFirstChild("RAINING MEN")
  25. if not rainin then
  26. a = Instance.new("Sound",workspace)
  27. a.SoundId = "rbxassetid://141509625"
  28. a.Name = "RAINING MEN"
  29. a.Volume = 58359
  30. a.Looped = true
  31. a:Play()
  32. end
  33. end
  34. end)
  35.  
  36. coroutine.resume(del)
  37. coroutine.resume(sound)
  38. coroutine.resume(msg)
  39. coroutine.resume(rain)
Add Comment
Please, Sign In to add comment