Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make it so the ScreenGui shows the correct amount saved once joining?

Asked by
vocful 6
4 years ago

Problem: When a player joins a game, a ScreenGui (representing how many coins they have) will be set to 0. If a player has coins and joins a new server, they will have their amount of coins, but the ScreenGui will say 0 until there has been an change in their amount of currency.

EX: I join and earn 50 coins. I leave. I rejoin, I have 0 coins according to the ScreenGui, but I have 50 coins in my player. I know this because I can purchase to destroy a part at the cost of 5 coins. Once I purchase it, the brick destroys, and then ScreenGui updates AFTER the purchase.

Point of Confusion: How do I make it so the ScreenGui shows the correct amount saved once joining?

DataStore Script Local script, located in ServerScriptService

01local DataStore = game:GetService("DataStoreService")
02local ds = DataStore:GetDataStore("CoinSaveSystem")
03 
04game.Players.PlayerAdded:connect(function(player)
05 local leader = Instance.new("Folder",player)
06 leader.Name = "Currency"
07 local Coins = Instance.new("IntValue",leader)
08 Coins.Name = "Coins"
09 Coins.Value = ds:GetAsync(player.UserId) or 0
10 ds:SetAsync(player.UserId, Coins.Value)
11 Coins.Changed:connect(function()
12  ds:SetAsync(player.UserId, Coins.Value)
13 end)
14end)
15 
16 
17game.Players.PlayerRemoving:connect(function(player)
18 ds:SetAsync(player.UserId, player.Currency.Coins.Value)
19end)

ScreenGuiScript Local script, located inside the TextBox, located inside a ScreenGui

1local coins = game.Players.LocalPlayer.Currency:FindFirstChild("Coins")
2 
3coins.Changed:Connect(function()
4    script.Parent.Text = "".. coins.Value
5end)

-I have the TextBox text set to 0 because I new first-time players to start with 0 coins. -Problem is when a player who already has data saved, their TextBox (located inside ScreenGui) will say 0 until there is a change in their data

-Any way to fix my problem? I can provide more information if needed!

1 answer

Log in to vote
0
Answered by
JoneXI 51
4 years ago

The Problem is in the ScreenGui, The Value Uptades whenever its CHANGED, so when you rejoin the value just won't uptade, so what you need to do is:

1local coins = game.Players.LocalPlayer.Currency:FindFirstChild("Coins")
2 
3script.Parent.Text = "".. coins.Value
4 
5coins.Changed:Connect(function()
6    script.Parent.Text = "".. coins.Value
7end)

I hope I helped :)

0
Thank you so much! vocful 6 — 4y
Ad

Answer this question