Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function Client_Play_Sound(url)
- local sound = playSound(url)
- setSoundVolume(sound, 0.5)
- end
- addEvent("Client_Play_Sound", true)
- addEventHandler("Client_Play_Sound", getRootElement(), Client_Play_Sound)
- function Client_Stop_Sound()
- stopSound(sound)
- end
- addEvent("Client_Stop_Sound", true)
- addEventHandler("Client_Stop_Sound", getRootElement(), Client_Stop_Sound)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement