Damage = 600
ball = script.Parent
function bullet(Boss)
if Boss.Parent and Boss.Parent:FindFirstChild("Health") then
Boss.Parent.Health.Value = Boss.Parent.Health.Value - Damage
CON:disconnect()
end
end
CON = script.Parent.Touched:connect(bullet)
debris = Game:GetService("Debris")
debris:AddItem(bullet,6)
It just doesn't clean still, the output complained about something that whenever i try to post it I get an error occured. |