mint3d Posted October 14, 2013 Posted October 14, 2013 Ok so i got the thing i want to do so that when onPlayerSpawn it plays a welcome song and only plays for 5 seconds would it be this its not working any help please? I just need to add timer i think and make a server side? JoinMusic = playSound("music/welcome.mp3") addEventHandler("onClientPlayerSpawn", root, function() if isElement(JoinMusic) then destroyElement(JoinMusic) end end)
Castillo Posted October 14, 2013 Posted October 14, 2013 If you want to play it when spawn, why do you put playSound outside the function?
mint3d Posted October 14, 2013 Author Posted October 14, 2013 What do you mean? I want it to play a sound for a timer of only 5 seconds how may I go about doing this?
Chopper Posted October 14, 2013 Posted October 14, 2013 addEventHandler("onClientPlayerSpawn", root, function() JoinMusic = playSound("music/welcome.mp3") setTimer ( stopMusic, 5000, 1) end) function stopMusic() stopSound(JoinMusic) end
Castillo Posted October 14, 2013 Posted October 14, 2013 Change 'root' to 'localPlayer' at addEventHandler.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now