Hi Mighty friends, I wanna know how to make custom leaderstats but don't know how, Help of you can thanks alot.
Creating leaderstats needs a new instance called leaderstats. Here is the code.
game.Players.PlayerAdded:Connect(function(player) lb = Instance.new("IntValue",player) --[[Here you set what are you creating and its parent]] lb.Name = "leaderstats"--[[This has to be called leaderstats]] Points = Instance.new("IntValue",lb) Points.Name = "YourCurrency"--Set to whatever --You can change its value with Points.Value end end)