Definition help

Ok, so I am new to scripting, and I would need some definitions of things. If you’d like to please define the following:

unpack
repeat
DockWidgetPluginGuiInfo
return
FindFirstChildOfClass
Vector2int16
Vector3int16

thank you very much :smiley:!
P.S. if you don’t know all of them, just do the ones you know

2 Likes
  • unpack is a function that returns the contents of a table as a tuple.
  • repeat is the beginning statement of a repeat until loop in Lua. It’s similiar to while loops but it’s condition is located after the code within the statement whereas while loops contain the statement before the code within the loop.
  • DockWidgetPluginGuiInfo is a custom Roblox datatype that constructs properties for the DockWidgetPluginGui PluginGui. It’s constructor function, DockWidgetPluginGuiInfo.new, returns an enumerated format of properties that tell the DockWidgetPluginGui how to behave.
  • return is a statement that’s used in functions and modules that tells the function caller to send data back to where the function was called from.
  • FindFirstChildOfClass is a method of instances that returns the first instance corresponding to the class name it’s called with.
  • Vector2int16 is a custom roblox datatype that contains information from it’s constructor function, Vector2int16.new, which uses integral coordinates to construct a new Vector2.
  • Vector3int16 is a custom roblox datatype that contains information from it’s constructor function, Vector3int16.new, which uses integral coordinates to construct a new Vector3.
13 Likes