Did you try adding what I suggested
oh sorry i will try now i was writing to you something
where add that? in the local script?
its not working still when i join the gui value is 0 and only when i touch next checkpoint it changing to current stage value
Add a new Script in ServerScriptService like this:
game.Players.PlayerAdded:Connect(function(player)
local Gui = player.PlayerGui:WaitForChild("ScreenGui").TextLabel
Gui.Text = player:WaitForChild("leaderstats").Stage.Value
end)
Make sure that you change “ScreenGui” to the name of your screen gui and “TextLabel” to the name of your text
1 Like
working thank you very much you helped me a lot
thank you very much you helped me a lot too
1 Like
No problem. Just glad that I was able to help