Advertisement
Koyban

Untitled

Feb 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. local sound = Instance.new("Sound")
  2.  
  3. sound.Name = "Sound"
  4. sound.SoundId = "" --음악 아이디
  5. sound.Volume = .45 --사운드(음악소리)
  6. sound.Pitch = 1 --음악 스피드
  7. sound.Looped = true
  8. sound.archivable = false
  9.  
  10. sound.Parent = game.Workspace
  11.  
  12. wait(0)
  13.  
  14. sound:play()
  15.  
  16. --by Koyban
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement