i need add somethinks in here https://gyazo.com/5cfa4a962e2017f04da00b18897652b8 this need to be automatic
You'd have to put a script in the StarterPlayerScripts that'll create a folder with stats. Something like this,
local Player = game.Players.LocalPlayer local playerStats = Instance.new("Folder", Player) playerStats.Name = "Stats" local Money = Instance.new("NumberValue", playerStats) Money.Name = "Money"