of     1   

HumanMop
#185927048Thursday, March 24, 2016 12:43 AM GMT

his: spawn(function() while wait() do if ffc(head, "face") then head.face:Destroy() else break end end end) mine: local face = ffc(head, "face") repeat face:Destroy() face = ffc(head, "face") until not face which one do you think is preferable? -=Robo=-
cntkillme
#185927106Thursday, March 24, 2016 12:44 AM GMT

They're both bad. local face = head:FindFirstChild("face") while face do face:Destroy() face = head:FindFirstChild("face") end
masterblokz
#185927133Thursday, March 24, 2016 12:45 AM GMT

his because it has a wait
HumanMop
#185927255Thursday, March 24, 2016 12:46 AM GMT

@Flux expand on bad? is there any reason besides preference to avoid repeat? -=Robo=-
Randy_Moss
#185928459Thursday, March 24, 2016 1:03 AM GMT

mine if wait() = nil then false head(object)true false= nil end
TimeTicks
#185928649Thursday, March 24, 2016 1:05 AM GMT

@flux yours is bad too while head:FindFirstChild("face")do head.face:Destroy() end
TimeTicks
#185928706Thursday, March 24, 2016 1:06 AM GMT

while wait() and head:FindFirstChild("face")do head.face:Destroy() end *
cntkillme
#185928781Thursday, March 24, 2016 1:07 AM GMT

Ticks your first one was better: "while head:FindFirstChild("face")do head.face:Destroy() end"
cntkillme
#185928862Thursday, March 24, 2016 1:08 AM GMT

"expand on bad? is there any reason besides preference to avoid repeat?" Repeat does first, then checks the condition. If it didn't exist to begin with you'd get an error.
YellowTide
#185929100Thursday, March 24, 2016 1:12 AM GMT

YOU CHANGED UR CODE DAMMIT
HumanMop
#185929584Thursday, March 24, 2016 1:18 AM GMT

I DID NOT CHANGE IT. thanks for clarifying @flux, appreciate it -=Robo=-

    of     1