I think what you're asking is a leaderboard system.
with this way you could check how long a player is on the server this session and how much gold he has.
Example leaderboard
01 | local function onPlayerJoin(player) |
02 | local leaderstats = Instance.new( "Folder" ) |
03 | leaderstats.Name = "leaderstats" |
04 | leaderstats.Parent = player |
06 | local gold = Instance.new( "IntValue" ) |
09 | gold.Parent = leaderstats |
11 | local .time = Instance.new( "IntValue" ) |
14 | time.Parent = leaderstats |
With this you have a folder in each Player with 2 Stats called gold and time. Now you could also do an easy function to make the IntValue in Time go up 1 every second.
If you do that you can check with print how long the player is on the server or make a GUI and display it there. I just gave you the beginning.
Example of Time Function
3 | time.Value = time.Value + 1 |
(I dont know if this works, Roblox is down right now)
But if this works you need to place it in the same script, right under my Lines up there.