Hey DevForum,
I’m really in a rush, my cafe is launching in around 5 minutes and I need to make a text label that shows the points of a user. Here’s my current code (the LocalScript is the only child of the TextLabel)
local points = game.Players.LocalPlayer.leaderstats.Points
while true do
points.Value = script.Parent.Text
wait(2)
end