Hey! I have a Backpack in my ReplicatedStorage, with a SurfaceGui and a TextLabel on it. When the player joins, the backpack is created and parented to the player. I have a script where I want to update that TextLabel.
I have a ServerScript on the Backpack, and the text should be changed. The function and remote event work, as the "Backpack Money" value works, the text just isn't changing and I can't seem to find out why. No errors obv
#SurfaceGUI not changing with ServerScript
5 messages · Page 1 of 1 (latest)

local Text = script .Parent.Label
function(ply)
plr:...
Text.Text = "Debug"
end
This does work, but may I ask what is the logic behind this, why does using .Text only work when its in the function
Because this line is the just the text ( a string like "hello") not the textlabel