Perfect! Tysm
So Height does not exist at all? The code you have provided above is trying to display the Height’s value on a textlabel. But it seems Height never even existed
I think that was the problem, I’m new at scripting so please forgive me for wasting your time.
Oh, I understand what the problem was now. But hey, you did not waste my time. You are new to scripting, and I understand. There is no need to apologize.
But all I advise you, in the future, when dealing with these types of problems, look carefully into your script and see what is the problem. You even got an Output to see if you get any warnings or errors, so that you can see what line the problem is on, and what is the problem exactly.
Now for your script, I suggest you use this extended code below:
local TextLabel = script.Parent -- the script is directly inside the text label, so we do 'script.Parent'
local plr = game.Players.LocalPlayer -- gets the 'LocalPlayer' (can only be used on a Local Script
local MoneyValue = plr:WaitForChild("leaderstats").Money -- gets the money value from 'leaderstats' folder
TextLabel.Text = MoneyValue.Value -- Money value will be displayed on the text
MoneyValue:GetPropertyChangedSignal("Value"):Connect(function() -- if money value changes
TextLabel.Text = MoneyValue.Value -- updates the text
end)