|
| 08 Jul 2011 06:39 PM |
| Can somebody please tell me the script for making a brick into lava? |
|
|
| Report Abuse |
|
|
|
| 08 Jul 2011 06:40 PM |
function onTouch(hit) hit.Parent.Humanoid.Health = 0 end script.Parent.TOuched:connect(onTouch) |
|
|
| Report Abuse |
|
|
|
| 08 Jul 2011 06:41 PM |
That script may break.
script.Parent.Touched:connect(function(hit) if hit.Parent:findFirstChild("Humanoid") then hit.Parent:BreakJoints() end end)
Regards, ~Scarfacial |
|
|
| Report Abuse |
|
|
|
| 08 Jul 2011 06:43 PM |
| Thanks guys this helps me alot. :D |
|
|
| Report Abuse |
|
|