[OPEN SOURCED] More Fetch Functions!

Hello everybody.

Recently, I found myself bored, with nothing to do so I developed something which I myself, find very useful for convenience. Obviously, this is very easy to make but to have it on the go is useful.

I am aware filtering children is quite easy on roblox, but anyway; here is what I made;

Introducing, More Fetch Functions.

A brief overview of this API allows users to get descendants, children etc via type and name without having to filter for loops.

Example:

local module = require(filelocation.FileName)

local specificChildren = module:GetSpecificChildren(part, "part")

for i,v in pairs(specificChildren) do
   print(v)
end

Any more documentation is available within the module itself, so download it and give it a try.

Yes I know, this is probably done before but anyway, here ya are.

3 Likes