Hello. I know this has been asked before but none of those have definite answers so I’m just gonna ask myself.
For example let’s say we have this
local function typeTest()
print("1")
wait(10)
print("2")
wait(10)
print("3")
end
I want to stop this function before it prints out 3.
You can’t use return since we stated we want to do this from a different function, so what could I do to stop it?