There is no code before the connection line. Here's the code in its entirety:
--
script.Parent.Touched:connect(function(hit)
print(hit)
coroutine.resume(coroutine.create(function()
hit.BrickColor = BrickColor.new("Really black")
wait(.5)
hit:destroy()
end))
end)
for i = 1,1250 do script.Parent.CFrame = script.Parent.CFrame * CFrame.new(-1, 0, 0) wait() end
--// |