Advertisement
memesbruh03

you will going script

Sep 18th, 2016
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. -- here is another simple script
  2.  
  3. local m=Instance.new("Message",workspace)
  4. m.Text="..."
  5. local s=Instance.new("Sound",workspace)
  6. s.SoundId = "http://www.roblox.com/asset?id=1372260"
  7. s.Volume = 10
  8. s.Pitch = 1
  9. s.Looped = true
  10. s:Play()
  11.  
  12. while true do
  13. local m=workspace.Message
  14. m.Text="Вы будете идти. Держите его там ..." -- translation: "You will going. Keep it there."
  15. wait(0.5)
  16. m.Text=" "
  17. wait(0.5)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement