Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local store = game:GetService("DataStoreService"):GetDataStore("ATM")
- game.Players.PlayerAdded:Connect(function(Player)
- local stats = Instance.new("Folder", Player)
- stats.Name = "leaderstats"
- local Ru = Instance.new("IntValue", stats)
- Ru.Name = "Ru"
- Ru.Value = 100
- local Level = Instance.new("IntValue", stats)
- Level.Name = "Level"
- Level.Value = 0
- local isOwner = Instance.new("BoolValue", stats)
- isOwner.Name = "isOwner"
- isOwner.Value = false
- local BuyedApart = Instance.new("ObjectValue", stats)
- BuyedApart.Name = "BuyedApart"
- end)
Advertisement
Add Comment
Please, Sign In to add comment