In this video I show you how to create leaderstats in Roblox Studio.
Script
game.Players.PlayerAdded:Connect(function (Player)
local stats = Instance.new("Folder")
stats.Name = "leaderstats"
stats.Parent = Player
local Money = Instance.new("IntValue")
Money.Name = "Money"
Money.Parent = stats
end)