of     1   

swimmaster07
#182282016Sunday, January 24, 2016 3:38 AM GMT

Output doesn't say anything... local brick = script.Parent local tool = game.StarterPack.Tool brick.Touched:connect(function(hit) if hit.Parent == tool then local fire = Instance.new("Fire", brick) end end)
PraetorianTheGod
#182282123Sunday, January 24, 2016 3:40 AM GMT

Not the same tool from the StarterPack
PraetorianTheGod
#182282169Sunday, January 24, 2016 3:40 AM GMT

tool.Handle should be hitting it as well right?
swimmaster07
#182282193Sunday, January 24, 2016 3:41 AM GMT

no tool really is equal to game.StarterPack.Tool...
PraetorianTheGod
#182282212Sunday, January 24, 2016 3:41 AM GMT

try local brick = script.Parent local tool = game.StarterPack.Tool brick.Touched:connect(function(hit) if hit.Parent.ClassName == "Tool" then local fire = Instance.new("Fire", brick) end end)
128Gigabytes
#182282240Sunday, January 24, 2016 3:41 AM GMT

Where is the script
swimmaster07
#182282702Sunday, January 24, 2016 3:48 AM GMT

THX pra, it works now, I didn't even know you could do that classname thing!

    of     1