Does anyone know how to give an enemy ( In this case give a Dalek from Doctor Who) a weapon? I'm trying to make it use a Dalek laser but I'm not sure how you do it. Thanks in advance!
You can input a script in the arm or torso. This will only work with touch. I'm not going into detail what all it means.
function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if h~=nil then h.Health = h.Health - 3 end end script.Parent.Touched:connect(onTouched)