Hi. I have a part that has fire in it, and i have the fire disabled.
this is the script
local brick = Workspace.Part
function onTouch(part) brick.Fire.Enabled = true wait(3) brick.Fire.Enabled = false end
when i touch it, it does nothing. Help?
You never connected anything to a Touched event, so nothing would happen if you did touch any brick.