#how to wait until function has run fully roblox

3 messages · Page 1 of 1 (latest)

void nymph
#

send a remote event when it is done or return smth

viscid cape
#
function waitfunction(input)
  -- you have something delaying the output
  task.wait(2)
  return output
end

local output = waitfunction(input)
print(output)
#

it will yeild the current thread anyways