I have a text label that displays a timer and I would like to check whether the timer has reached below 110 seconds this is my script to play a tween if the timer is below 110.
if TimerLabel.Text < "110" then tween:Play() else print("timer is not under 110 seconds") end
if typeof(tonumber(TimerLabel.Text)) == 'Number' then if tonumber(TimerLabel.Text) < 110 then tween:Play() else print('timer is not under 110 seconds') end end