So if there is a part called "DoorTrigger" in workspace and i want to find it by just typing "doortrigger" how would i do that?
1 | local function findPart(fromParts, searchWord) |
2 | for i, part in pairs (fromParts) do |
3 | if part.Name:lower() = = searchWord:lower() then |
4 | return part |
5 | end |
6 | end |
7 | end |
8 |
9 | print (findPart(workspace:GetChildren(), "doortrigger" )) |
Now this is an example code that I just put together, but it should do the work of showing you how you can think.
To explain what part.Name:lower()
does it takes the string, which is the name of the Part, and makes all letters lowercase. "DoorTrigger":lower() = "doortrigger".
1 | local game.Workspace.DoorTrigger = DoorTrigger |
or if you do not want to do a varibile
1 | game.Workspace.DoorTrigger |
or
1 | workspace.DoorTrigger |
when you do game before workspace then workspace has a capitalized W so Workspace and when you do no game before it you do workspace all lowercase.