of     1   

robloxboy54
#139293869Saturday, July 05, 2014 6:42 AM GMT

Every time I try to test out my game in solo mode, this script pops up and the last line is highlighted in red, I don't know what is wrong with it...So...What is wrong with it? local boom = false function createExplosion(position) explosion = Instance.new("Explosion") explosion.Position = position explosion.BlastRadius = 12 explosion.Parent = game.Workspace end function onTouch(part) if boom == true then return end if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then boom = true createExplosion(script.Parent.Parts.Engine.Position) script.Parent:BreakJoints() local stuff = script.Parent:children() for i=1,#stuff do if stuff[i].Name == "BodyKit" or stuff[i].Name == "Parts" then local parts = stuff[i]:children() for p = 1, #parts do if parts[p].className == "Part" then local velo = Instance.new("BodyVelocity") velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036) velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15)) velo.Parent = parts[p] end end end end wait(4) script.Parent:remove() end end script.Parent.Parts.Tip.Touched:connect(onTouch)
AnonyAnonymous
#139295172Saturday, July 05, 2014 7:05 AM GMT

Inform us of what's appearing in output.
Sasayaki
#139298685Saturday, July 05, 2014 8:22 AM GMT

script.Parent.Parts.Tip.Touched:connect(onTouch) Seems like Tip doesnt exist or isnt a part

    of     1