To set up a lava part you need to create a part in the workspace and add the tag Lava
to the new part.
This can be done in 2 ways:
- Select your part, then in the properties panel, find the
Tags
section and addLava
as a tag. - With code:
local lavaPart = Instance.new("Part")
lavaPart.Parent = workspace
lavaPart:AddTag("Lava")