of     1   

snakior
#181896390Monday, January 18, 2016 2:24 AM GMT

Im making a raft game and i need a script or a block that if you touch it, it will slowly kills you (Meaning it will remove your body part that touches it.) Much appreciated!
cowsoncows
#181896774Monday, January 18, 2016 2:29 AM GMT

function onTouch(p) p:Remove() end Part.Touched:connect(onTouch) That'll remove anything that touches it

    of     1