How to make leaderstats in roblox studio! (Full explaining)

Опубликовано: 12 Март 2026
на канале: Hex Dev
62
2

In this video i show you how to make leaderstats in roblox studio, and i explain why you are inserting the words you are inserting!
If you dont wanna make the script by yourself, then the script is here:

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

local Cash = Instance.new("IntValue")
Cash.Parent = leaderstats
Cash.Name = "Money"
Cash.Value = "0"

while true do
wait(1)
Cash.Value += 1
end
end)