Answered by
4 years ago Edited 4 years ago
If you use this code, You gotta try it in a real game
Add a script to server script service and call it dataHandler or whatever you want
Here's the code you use:
02 | local dataStoreService = game:GetService( "DataStoreService" ) |
03 | local myDataStore = dataStoreService:GetDataStore( "RobloxDataStore" ) |
06 | game.Players.PlayerAdded:Connect( function (player) |
10 | playersLeft = playersLeft + 1 |
13 | local leaderstats = Instance.new( "Folder" ) |
14 | leaderstats.Name = "leaderstats" |
15 | leaderstats.Parent = player |
17 | local money = Instance.new( "IntValue" ) |
20 | money.Parent = leaderstats |
24 | local PlayerUserId = player.UserId |
33 | local success, errorMessage = pcall ( function () |
37 | player_data = myDataStore:GetAsync(PlayerUserId) |
43 | money.Value = player_data.Money |
49 | local bindableEvent = Instance.new( "BindableEvent" ) |
53 | game.Players.PlayerRemoving:Connect( function (player) |
57 | local playerUserId = player.UserId |
62 | Money = player.leaderstats.Money.Value |
67 | local success, errorMessage = pcall ( function () |
68 | myDataStore:SetAsync(playerUserId, player_data) |
72 | playersLeft = playersLeft - 1 |
90 | if playersLeft > 0 then |
91 | bindableEvent.Event:Wait() |
please read what I put the green things in, I tell you how it works
Closed as Not Constructive by 2_MMZ, pwx, and Amiaa16
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?