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

Why is my overhead gui won't update?

Asked by 2 years ago

i tried to make a overhead gui but the text didn't update


local MoneyLib = require(game.ReplicatedStorage.MoneyLib) local gui = script.Parent local char = gui.Parent.Parent local plr = game.Players:GetPlayerFromCharacter(char) local s = plr:WaitForChild("Values") while true do gui.Cash.Text = "Money: $".. MoneyLib.HandleMoney(tonumber(s.Money.Value)) wait() end

Answer this question