I started on another game where the time limit is 1 min and you need to try to get as much coins as possible.
One problem I have no idea how to make a time limit.
I just want a simple 1 min time limit, thank you.
Have u tried Fixedupdate? It executes every 2ms(50times per sec).U could increment variable and if it is equal to 3000 it should be exact minute
look at Time.time
store the time at the “start” check if it’s now “startTime + 60f”
a other good way would be to add Time.deltaTime to a var every update, than check to see if it is greater or equal to the time you want to wait for. I like this over Time.time since you can reset it back to zero when needed.