Advertisement
Cakey3101

ZombieGame - Part 1 Leaderstats Script!

Nov 28th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. game:GetService("Players").PlayerAdded:Connect(function(player)
  2.  
  3. local leaderstats = Instance.new("Folder", player)
  4. leaderstats.Name = "leaderstats"
  5.  
  6. local Coins = Instance.new("IntValue", leaderstats)
  7. Coins.Name = "Coins"
  8. Coins.Value = 0
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement