Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local music = {}
- local musicChannel = {
- channel = 1
- }
- local volume = 1
- function music:Play(song)
- local play = audio.play(song, musicChannel)
- audio.setVolume(volume, musicChannel)
- end
- function music:Options(event)
- end
- Runtime:addEventListener('Options', music)
- return music
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement