Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to create a Gamepass VIP? [closed]

Asked by
Rurith 10
11 years ago
01--------------------
02--| WaitForChild |--
03--------------------
04 
05-- Waits for parent.child to exist, then returns it
06local function WaitForChild(parent, childName)
07    assert(parent, "ERROR: WaitForChild: parent is nil")
08    while not parent:FindFirstChild(childName) do parent.ChildAdded:wait() end
09    return parent[childName]
10end
11 
12-----------------
13--| Variables |--
14-----------------
15 
View all 75 lines...

This script is great, but it only works for ROBLOX Gears. How do I make it so it works for Models?

Closed as Too Broad by Azarth and Articulating

This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.

Why was this question closed?