Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- WARNING: Be sure to make this a Script and put it in Workspace if you want it to work!
- game.Players.PlayerAdded:connect(function(p)
- local stats = Instance.new("IntValue", p)
- stats.Name = "leaderstats"
- local money = Instance.new("IntValue", stats)
- money.Name = "Time Played"
- money.Value = 0
- while true do
- wait(1)
- money.Value = money.Value + 1
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment