How to continue a loop after a wait

No, the sentence there contradicts itself. I can’t do a 200m sprint, decide at 100m I want to go back to 0m yet at the same time, continue past 100m.

do you mean something like this?

local boolean = false

while true do wait()
	print("hi")
	if not boolean then
		print("..")
		wait(10) -- set this to 10 because 5 do be quick
	end
	print("hi2")
	boolean = true
end

i found that the solution was just that i didnt check if the area1dummy even existed, but thanks for trying anyway!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.