Gibbing according to material
Basically, How do I make something gib if it is a certain material?
Code:
function Create(self)
for actor in MovableMan.Actors do
if actor.Material == "material name"
actor:GibThis()
end
end
end
end
Something like that?
This is for a bomb I'm trying to make.