local Stand = script:WaitForChild("Stand"):Clone() -the code
Infinite yield possible on 'ServerScriptService.Summon:WaitForChild("Stand") the error
ik its missing something but what
To stop infinite yield warnings pass a second parameter to WaitForChild
local timeout = --some number (I'm seconds) after which the script will stop waiting. local stand = script.WaitForChild("stand", timeout):clone()