of     1   

Elcudias
#182972094Thursday, February 04, 2016 4:23 AM GMT

Is there anyway to make the terrain lava in a place kill you as you touch it, but the other materials in terrain don't? Example: Lava fort, rocks don't kill you, fall into lava, lava kills you.
Scottifly
#182978690Thursday, February 04, 2016 7:49 AM GMT

Put a transparent kill Part or Parts just above the terrain lava. You can get the script from the wiki.
CLVRBDevelop
#205657577Wednesday, December 28, 2016 4:51 PM GMT

Sorry for ruining your experience and probably this is old and probably sucks. Make a part called LavaPart. Make sure collide is off and is anchored. Then insert a script into game.Workspace.ServerScriptService and script it. LavaPart.Transparency = 1 Then add your desired terrain around it, then use this kill script. local part = script.Parent part.Touched:connect(function(hit) if hit.Parent then --common pitfall of kill bricks, without this the script will break when hit by bullets local hum = hit.Parent:FindFirstChild("Humanoid") if hum then hum.Health = 0 end end end) Insert this script into the brick, now scale the brick so it could be the size of the terrain. ~CLVRB

    of     1