HowToRoblox

PowerStatsScript

Jan 13th, 2020
1,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2.    
  3.     local stats = Instance.new("Folder")
  4.     stats.Name = "leaderstats"
  5.     stats.Parent = plr
  6.    
  7.     local power = Instance.new("IntValue")
  8.     power.Name = "Power"
  9.     power.Parent = stats
  10.    
  11. end)
Add Comment
Please, Sign In to add comment