Ok this time im working on a radio script but idk how to play the song serverside/ to everyone
When i type
it only plays the song file to myself
how would i go about making it serverside??
PHP Code:
function onPlayerChats(){
if (player.chat.starts(":start")){
this.song = player.chat.substring(7);
play(this.song);
player.chat = "";
}
}