I have a resource which runs another resource when the server comes player:
function PlayerJoin()
resource = getResourceFromName("player-auth")
startResource(resource)
end
addEventHandler("onPlayerJoin", root, PlayerJoin)
The problem is this: This resource is triggered FOR ALL PLAYERS, and I need it to ONLY run FOR the PLAYER WHO JOINED!
HELP, PLEASE!