Hi, could anyone help me with displaying score/money/or points as a textlabel?
That will go something like this:
local points = --locate points here local TextLabel = --locate a TextLabel here TextLabel.Text = "Points: "..points.Value points.Changed:Connect(function() TextLabel.Text = "Points: "..points.Value end)
We are setting the value of the points in a TextLabel, then we detect if the value of the points changes, if it does then we update the TextLabel.