of     1   

Riku567
#30958869Thursday, August 05, 2010 10:39 PM GMT

If you can't tell, its decreses the plaers health over time. human = script.Parent:findFirstChild("Humanoid") function DoT() for i = 1, 7 do human:TakeDamage(4) wait(0.2) script:Remove() end end
griffboy11
#30958986Thursday, August 05, 2010 10:40 PM GMT

Connection much?
Riku567
#30959050Thursday, August 05, 2010 10:41 PM GMT

Connection? im not shure what would be there.
Riku567
#30959222Thursday, August 05, 2010 10:43 PM GMT

Help plox?
griffboy11
#30959229Thursday, August 05, 2010 10:43 PM GMT

Is this for a brick that gets touched?
mrchickensoup
#30959243Thursday, August 05, 2010 10:43 PM GMT

If lava: script.Parent.Touched:connect(function(hit) if hit.Parent.Humanoid then hit.Parent.Humanoid:TakeDamage(24) end end)
Fabunil
#30959249Thursday, August 05, 2010 10:43 PM GMT

human = script.Parent:findFirstChild("Humanoid") function DoT() for i = 1, 7 do human:TakeDamage(4) wait(0.2) script:Remove() end end DoT() <-- a function has to be called. or: human = script.Parent:findFirstChild("Humanoid") for i = 1, 7 do human:TakeDamage(4) wait(0.2) script:Remove() end
Riku567
#30959410Thursday, August 05, 2010 10:46 PM GMT

Thx, and no, it is put into a player.
mrchickensoup
#30959628Thursday, August 05, 2010 10:49 PM GMT

Oh. function onTouched(hit) if hit.Parent.Humanoid then hit.Parent.Humanoid:TakeDamage(20) end end game.Workspace.YourName.Torso.Touched:connect(onTouched)

    of     1