I want to know all IsA()

we can find part by :IsA(“BasePart”)
we can find local script by :IsA(“Script”)
how to find fire?
how to find ather ones?.

:IsA(“Fire”) and you have them for all other objects as well.

2 Likes

IsA(“This Takes The Object Class”) In every Object or Item in roblox in the properties you will see a Class section . Simply add the class in the () in IsA(Insert Class Here)

https://developer.roblox.com/en-us/api-reference/function/Instance/IsA

You should probably look at IsA’s documentation.

1 Like

there is no information about class things.
we can’t find “Script” in the documentation but i found the IsA(“Script”) can find local script

Part and MeshPart can found with IsA(“BasePart”) but
no way to get Particles and Fire in same script?

I guess using their class name as the parameter will be fine

for Example: particle - ParticleEmitter

Sans titre
part is a instance btw

1 Like

:IsA(“Part”) is familiar to if part.ClassName == “Part”.

https://developer.roblox.com/en-us/api-reference/index

These are all documented on the devhub.

1 Like

bruh

i tried IsA(“Particle”) and it could not find ParticleEmitter and Fire.

Anything in this list can be used in IsA

1 Like

I don’t see what the issue with doing

if thing:IsA("ParticleEmitter") or thing:IsA("Fire") then

It’s ParticleEmitter, not Particle.

finally answer i wanted. thanks!

1 Like

I had already provided the same link previously.

1 Like