My script wont work :(
local tool = script.Parent
local BloodType1 = tool:FindFirstChild("BloodType")
local BloodType2 = tool.Parent:FindFirstChild("BloodType")
tool.Activated:Connect(function()
if BloodType1.Value == BloodType2.Value then
tool.Parent.Humanoid.Health += 50
tool:Destroy()
else
tool.Parent.Humanoid.Health -= 75
tool:Destroy()
end
end)
*FIXED* I could've sworn it was a local script but for some reason it was not.