Code:
command /start:
trigger:
set {started::%player's uuid%} to now
set {run::%player's uuid%} to true
while {run::%player's uuid%} = true:
wait 1 second
set {_time} to difference between {started::%player's uuid%} and now
send title "&a" with subtitle "&bTime: &f%format({_time})%" to player
function format(time: text) :: text:
replace all "minutes" in {_time} with ": "
replace all "seconds" in {_time} with ""
return {_time}
Pls help me