I want to add a numbervalue into a player when the join the game, but how do i do this? Thanks.
game.Players.PlayerAdded:Connect(function (player) local x = Instance.new("IntValue") x.Parent = player x.Name = "Put The Name of the Value here" x.Value = 0 --change to the value you want it to be end)