Yes audio roles presented in the game's credits. Richard C. Leinecker verified composing the title screen music.
@smittss Жыл бұрын
i tried to change it when i touch a part and it just says "attempted to index nil with PlayerGui"
@mrduck7343 Жыл бұрын
Bro how do you detect playerGui with a server script im trying to make it so when someone equips a skin it changes what they get when they purchase a item
@cataboku3551 Жыл бұрын
SAME IM STRUGGLING TO DO THROUGH A NORNAL SERVERSIDE SCRIPT it's so easy with a local script
@monkeystudyroblox Жыл бұрын
It’s detected nearly the same way as in a LocalScript: game.Players.PlayerName.PlayerGui or you can get the player instance a number of ways and then do Player.PlayerGui 🙂 Glad to answer anymore questions 😁 If you’re unsure of how to get the player on the server you can find many results by looking it up 🙂 Hope this helps!
@mrduck7343 Жыл бұрын
@@monkeystudyroblox ok so I been searching all over the internet for days to find answer to my question here so my problem is that I have a event which is activated through a local script and it detects whether the players gui button for equipping says "Unequip" but the reason i believe it doesnt work is because it only changes the button through the client and not the server so it doesn't actually end of detecting it if you know how to fix that or if you think thats not the problem that would be great
@RayTopPlayer Жыл бұрын
Is there a way to disable the script in playergui, while touching a part in the game?
@willegsson Жыл бұрын
Yes, you would first need to get the player that has touched the part. Then make a variable like: Local GUI = player.PlayerGui.YourGuiHere Then just GUI.YourScriptHere.Enable = false Of course you would need to make and put these lines in a function. I guess you know how?
@willegsson Жыл бұрын
“YourGuiHere” is a screenGui but I guess you understand