Advertisement
anphu04

bypasses audio 2 (with messages)

Jul 18th, 2017
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. local sound = Instance.new("Sound", game.Workspace)
  2. sound.PlayOnRemove = true
  3. sound.Looped = true
  4. sound.SoundId = "rbxassetid://873336195"
  5.  
  6. local playmusic = coroutine.create(function()
  7. while true do
  8. sound.TimePosition = 75
  9. sound:Play()
  10. wait(40)
  11. end
  12. end)
  13.  
  14. local message = coroutine.create(function()
  15. while wait(0.1) do
  16. local msg = Instance.new("Message", game.Workspace)
  17. msg.Name = "GET SWIGITY SWAG BIATCH!!!"
  18. msg.Text = "Nigga Nigga Bitch Nigga Nigga Nigga Fried Chicken Nigga Watermelon Nigga Bitch Nigga Nigga White Women Titties Ass"
  19. end
  20. end)
  21.  
  22. coroutine.resume(playmusic)
  23. coroutine.resume(message)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement