Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns whether the supplied Luau thread is tracked as a Real-created thread. is_our_thread is an alias.
isourthread(thread: thread): boolean
is_our_thread
thread
tracked
boolean
local thread = coroutine.create(function() end) local tracked = isourthread(thread) print(tracked)