local fire Instance.new("Fire") fire.parent = script.Parent.Parent.tnt fire.size = 4
Did you forgot the equal sign? Also good practice is to set Parent last, for the performance sake. (capital letter BTW)
local fire = Instance.new("Fire") fire.size = 4 fire.Parent = script.Parent.Parent.tnt