So with time minutes is basically represented as x/60. Seconds would be the remainder of the quotients result.
To further explain,
If there’s 130 seconds, 130/60 = 2 10/60 or 2 with a remainder of 10. How would I make the remainder a variable? My script is currently:
local Time = 130
local Minutes = Time/60
local Seconds = "the remainder of 130/60"