local Gui = script.Parent -- If the script is parented in the gui
local Number = game.Players.LocalPlayer.leaderstats.Stage.Value
--or
Number.Changed:Connect(function()
Gui.Text = Number.Value
end)
local Gui = script.Parent -- If the script is parented in the gui
local Number = game.Players.LocalPlayer.leaderstats.Stage.Value
--or
Number.Changed:Connect(function()
Gui.Text = Number.Value
end)