Advertisement
SlippyRB

Roblox Leaderstats Script

Feb 9th, 2020
6,414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Roblox Leaderstats Script
  2.  
  3. game.Players.PlayerAdded:Connect(function(plr)
  4. local a = Instance.new("Folder",plr)
  5. a.Name = "leaderstats"
  6. local m = Instance.new("IntValue",a)
  7. m.Value = 0
  8. m.Name = "Coins"
  9. local x = Instance.new("IntValue",a)
  10. x.Value = 0
  11. x.Name = "Points"
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement