I'm merely wondering if it is possible to create a script ine that selects objects containing a "keyword" of some sort.
For example, say I want to find something, like a script, and disable it.
so i know everything like this:
while true do
child = Workspace:GetChildren()
wait()
if child.Name == "Infected" and child.className == "script" then
print("Disabling Infected Scripts...")
child.Disabled = true
print("The Script was Disabled.")
else print("Could not disable Script(s)!")
end
end |