I have a GUI in PlayerGui, and I would like to change its background color using PlayerAdded from a server script. Is this possible and if it is, how would I do this?
1 | game.Players.PlayerAdded:Connect( function (player) |
2 | player.PlayerGui.ScreenGui.Frame.BackgroundColor 3 = Color 3. new( 0 , 0 , 0 ) -- 0,0,0 = black |
3 | end ) |
I found out that I had the GUI's "Reset On Spawn" property on. I just turned it off to fix what I needed to do.