Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:Connect(function(plr) -- if a player joins it activates this code
- local leader = Instance.new("Folder",plr) -- Makes a folder inside our player
- leader.Name = "leaderstats" -- do not change
- local Cash = Instance.new("IntValue",leader)-- makes a number value in the folder we just made
- Cash.Name = "Money" -- Currency name you can change if u want for example "V-Bux"
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement