game.Players.PlayerAdded:Connect(function(player) local leaderstats = Instance.new("Folder") leaderstats.Parent = player leaderstats.Name = "leaderstats" local money = Instance.new("NumberValue") money.Parent = leaderstats money.Name = "Money" -- You can change the name u can also do that on line 6 of the script money.Value = 100 -- If you want a person to start with 300 money u can change the value to 300 local level = Instance.new("IntValue") level.Parent = leaderstats level.Name = "Level" -- same here level.Value = 1 - same here end)