of     1   

Extuls
#208339313Friday, January 27, 2017 6:26 PM GMT

Up until recently we had two methods, Instance:FindFirstChild() and Instance:WaitForChild() Then Instance:FindFirstChildOfClass() was added. This suggestion is for a new one to be made. Though easy to do, so was making WaitForChild(), so I don't see why not. Clearly based on the title, I'm suggesting Instance:WaitForChildOfClass(), which is self-explanatory if you have an understanding of scripting. If you don't understand scripting, to try and explain it, it would give scripters a much quicker way of waiting for a certain type of object to be inserted. For example, it could be used to wait until a part has sparkles in it, if that's what you needed to wait for. That's about it. Support or don't support, it's your opinion. Please explain why you don't support if you don't, though.
General_Scripter
#212836685Sunday, March 26, 2017 11:27 AM GMT

Seeing as this is the only and most recent thread on this topic, I'm bumping it even though it old. I support this suggestion.
itsameweegee123
#212838494Sunday, March 26, 2017 12:11 PM GMT

SUPPORT
Extuls
#213032402Wednesday, March 29, 2017 5:41 AM GMT

Thanks for the support on this old suggestion.
Inigo18
#213032847Wednesday, March 29, 2017 5:53 AM GMT

I can see the idea, but no support. Its just WaitForChild.
Extuls
#213034870Wednesday, March 29, 2017 6:58 AM GMT

"Its just WaitForChild." How are Name and ClassName the same?
General_Scripter
#213034896Wednesday, March 29, 2017 6:59 AM GMT

"Its just WaitForChild." Are you serious? That made me giggle.
Inigo18
#213093956Thursday, March 30, 2017 5:54 AM GMT

Yeah, because why would you do :WaitForChildOfClass("BasePart") when you can just do WaitForChild("Part")
Extuls
#213167342Friday, March 31, 2017 11:33 AM GMT

Because it might not be called "Part"? An example of this would be how an old way to prevent resetting from the menu working would be to rename every character's humanoid to something besides "Humanoid." In this situation, best way to wait for it would be waiting for the class, not the name "Humanoid." Fact is, it's different from WaitForChild.
Inigo18
#213241792Saturday, April 01, 2017 1:03 PM GMT

Yeah, you're right. Alright support
f00fc7c8_fox
#213242252Saturday, April 01, 2017 1:11 PM GMT

Holy smokes yes, support.
DragonOfWar900
#213244432Saturday, April 01, 2017 1:45 PM GMT

MountainDewSlayer
#213244632Saturday, April 01, 2017 1:48 PM GMT

i have no idea what you just said roblox is trash
TruNubusV2
#217805899Wednesday, May 31, 2017 7:25 AM GMT

waitForChildOfClass = function(parent, className) local child = parent:FindFirstChildOfClass(className) if child then return child end while true do child = parent.ChildAdded:wait() if child.ClassName == className then return child end end end made the function all roblox needs to do is implement
Extuls
#217926880Thursday, June 01, 2017 9:39 PM GMT

function WaitForChildOfClass(Parent, ClassName) local function WaitForInsert() local Child = Parent.ChildAdded:wait() if Child:IsA(ClassName) then return Child else return WaitForInsert() end end local Child = Parent:FindFirstChildOfClass(ClassName) or WaitForInsert() return Child end That's how I would write it.
MountainDewSlayer
#218009806Friday, June 02, 2017 10:49 PM GMT

i don't speak chinese
Launderer
#218644261Sunday, June 11, 2017 2:30 PM GMT

SUPPORT

    of     1