Hello,
I am making a alien apocalypse game and theres a scene that needs lava. I made lava with spreading fire. This is the script -
function LavaKill(part) local Human = part.Parent:FindFirstChild("Humanoid") if Human then Human:TakeDamage(100) end local HumanPart = part.FindFirstChild("Part") if HumanPart then SpreadFire = Instance.new(Fire) SpreadFire.Parent = HumanPart end end Lava = game.Workspace.Lava Lava.Touched:connect(LavaKill)
The problem is that the lava doesnt spread any fire to the player body. How i can fix it?