of     1   

discretion
#36326762Monday, November 01, 2010 1:22 AM GMT

how exactly would you make this lava script set bricks on fire and burn them once they are touched? s = script.Parent function onTouched(hit) h = hit --What hit the brick p = hit.Parent if (p.Humanoid == nil) elseif (p.Humanoid ~= nil) then p:breakjoints() p.Health = 0 end end script.Parent.Touched:connect(onTouched
MrNicNac
#36327073Monday, November 01, 2010 1:28 AM GMT

function onTouched( object ) if object.Parent and not object:FindFirstChild("Fire") then Instance.new("Fire", object) end end script.Parent.Touched:connect(onTouched)

    of     1