Advertisement
Guest User

Hm

a guest
Feb 22nd, 2020
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2. local leaderstats = Instance.new(“Folder”,plr)
  3. leaderstats.Name = “leaderstats”
  4. local Val = Instance.new(“IntValue”,leaderstats)
  5. Val.Name = “Cash”
  6. while true do
  7. Val.Value = Val.Value + 1
  8. wait(1)
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement