- torchidev.carrd.co
- torchidev
- https://www.roblox.com/users/1252771839/profile
- @Torchidev
-
Joined
Apr 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local DataStoreService = game:GetService("DataStoreService") | |
| local MyDataStore = DataStoreService:GetDataStore("PlayerSave_V15") -- published to public version : v15 | |
| local BuyRemote = game.ReplicatedStorage.BuyTool | |
| game.Players.PlayerAdded:Connect(function(plr) | |
| local leaderstats = Instance.new("Folder", plr) | |
| leaderstats.Name = "leaderstats" | |
| local coins = Instance.new("IntValue", leaderstats) | |
| coins.Name = "Coins" |