roblox gametime script Script For Time played function onPlayerEntered(newPlayer) local stats = Instance.new("IntValue") stats.Name = "leaderstats" local secs = Instance.new("IntValue") secs.Name = "Time Played" secs.Value = 0 roblox gametime script PasteShr roblox gametime script secs.Parent = stats stats.Parent = newPlayer while true do wait(1) secs.Value = secs.Value + 1 end end roblox gametime script How to get it? roblox gametime script game.Players.ChildAdded:connect(onPlayerEntered) roblox gametime script