How to make LEADERSTATS in Roblox Studio! // Tutorial

Опубликовано: 22 Май 2026
на канале: Mike's Tipps // Roblox
1,288
21

How to create leader stats in Roblox Studio!

leaderstats script:
_ _ _ _

game.Players.PlayerAdded:Connect(function(player)
local leaderstats = Instance.new("Folder")
leaderstats.Name = "leaderstats"
leaderstats.Parent = player

local cash = Instance.new("IntValue")
cash.Name = "Cash"
cash.Value = 100
cash.Parent = leaderstats

local level = Instance.new("IntValue")
level.Name = "Level"
level.Value = 1
level.Parent = leaderstats
end)