function join(hit) while true do wait() local credits=script.Parent PlayerCredits=hit.Credits.Value credits.Text="Credits:"..PlayerCredits end end game.Players.PlayerAdded:connect(join)
Basically, this script will only show the credits for one player. If there are 2 players, only one of the players has their Credits showing on their GUI.
game.Players.ChildAdded:connect(function(hit) while true do wait() local credits=script.Parent local PlayerCredits=hit.Credits.Value credits.Text="Credits:"..PlayerCredits end end)
This is a guess, not sure where the script is supposed to go.