Hello developers! I am currently creating a GUI that displays how many points a user has (for mobile and for convenience), and I want it to update whenever a user earns points in-game, rather than just when they join the game.
You can use a .Changed event where when somebody’s stats are changed it updates the points. If your using leader stats then it should auto-update but if not you could use something like this:
PointsValue.Changed:Connect(function(newValue)
--Update Code Here
end)