ScanHumanoid — Scan Humanoids in Workspace

Old Post

ScanHumanoid

Scan Humanoids in Workspace

Why did I make this?

I saw someone making a resource for that which is a local plugin months ago, which is at 2023-02-24T21:34:00Z which is when I was sleeping (my timezone is GST [Gulf Standard Time] soo yep), that gave me an idea to publish it to the marketplace, It started bad, but now it’s better

Example Videos

https://youtu.be/Nz5ZRaWUtKA

https://youtu.be/3PioFNtvNLo

Features

  • Ability to remove Humanoids or AnimationControllers
  • Ability to make Humanoid(s) and/or AnimationController(s) unremovable by the plugin

My Other Plugins

Raw LoaderMaterial Converter

I recently found this as useless, It’s better to use some alternatives at the replies or run this code in the command bar

local select = game:GetService("Selection")

local list = {}

for _, v in workspace:GetDescendants() do
    if v:IsA("Humanoid") then
        table.insert(list, v)
    end
end

select:Set(list)

(I highly recommend InCommand so you can see the code better)

and delete all of them

1 Like

image

image

Tag: komad-vs-komad - Blogopod

Having a basic understanding of how studio works is nice.

3 Likes

Ctrl+Y does nothing, while Ctrl+Z is undo

CTRL + Y is literally redo… How do you not know?

1 Like

oh, I’m a very dumb person, I tried it and it did nothing unless I undone something

It’s literally useful when you accidentally undid something during the process.

Plus, based on how the video removed the humanoids one by one tells me there’s a task.wait(1) within the code that manages humanoid deletion; you know that by simply searching Humanoid at the explorer’s search bar and carefully removing things you necessarily don’t need isn’t much of a hard task.

A bit of scrolling won’t hurt right? As for AnimationControllers, is that directed for lazy people who doesn’t want to right click on a model and search through the object panel?

1 Like

Why did @SubtotalAnt8185 make this resource in the first place

I already made a plugin which selects classes in the specified service.

2 Likes

I am unaware of that, can you link it to me?

edit: found it but it’s deprecated

Yeah I plan to remake it to be part of the canary suite

1 Like

This is just a remake of his resource. I appreciate your efforts put into this, however there are quite unnecessary snippets present. Such as

local random = Random.new()

local valueA, valueB = random:NextInteger(1, 10), random:NextInteger(1, 10)

if valueA == valueB then
	repeat
		task.wait()
		valueA = random:NextInteger(1, 10)
	until valueA ~= valueB
end

And the task.wait() present in all for loops. I don’t see any other external plugins actively interfering with humanoids other than MoonAnimator.

Sorry for the late reply, I was handling some personal business outside of DevForum.

That snippet was made because I don’t want the PluginMenu to break

Thanks

1 Like

image

yes I know, but that plugin was made a while ago and I decided to make an update and publish an topic, also why do you keep using avodey everywhere

image

oh yeah forgot that existed honeslty

Make an anti cheat so we can destroy Why Im Fat

I did it but everyone hated it

ok then i challenge you to make a rain system, shouldn’t be too hard right?

There’s ALSO Ctrl + Shift + Z.

2 Likes

i didnt know that selection service exists :O,