Roblox Wiki
Advertisement
Roblox Wiki

Methods are functions that belong to particular instance types, or can be custom made. Instance types each have their own methods that can be called. wiki.roblox.com has a full list of available methods for each instance, as does the Object Browser. Common methods include, but are certainly not limited to:

  • FindFirstChild()
    GetChildren()
    Destroy()

As you can see, they’re formatted like this:

MethodName()

Methods are ALWAYS formatted like this. Some methods need arguments, for example:

Lua error in Dev:Delimited tag at line 17: No tag text provided.?. — we called the IsA() method, which requires the className of something. Line shown will print in the output as “true.”

Advertisement