I have double checked everything was done right but it doesn't seem to be working!
I put this script in the Workspace: game.Players.PlayerAdded:connect(function(plr) local played = Instance.new("Folder",plr) played.Name = "GamesPlayed" local Games = Instance.new("IntValue",played) Games.Name = "PlayedGames" Games.Value = 0 end)
And I put this script in a textlabel that is located in the StarterGui: local Games = script.Parent.Parent.Parent.Parent.Parent.GamesPlayed.PlayedGames Games.Changed:connect(function() script.Parent.Text = ""..Games.Value end)
Can someone please explain to me why the text in the textlabel does not change if the IntValue changes?