What am I doing wrong? [Solved]
Basically this is a launch script that will work based on the new nerfed explosions and physics engine. I keep having issues pop up with Lines 64, 65, and 77. Can anyone read through this and help me correct it? (I am fairly new to RBX.Lua and scripting in Roblox as a whole so I apologize if I come off as "stupid").
001 | print ( "Script Active. Waiting Launch." ) |
002 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Ready for Launch." |
003 | Main = game.Workspace.Rocket.RocketModel.Head |
004 | Top = game.Workspace.Rocket.RocketModel.Head 2 |
005 | Booster = game.Workspace.Rocket.RocketModel.Booster |
006 | GantrySide = game.Workspace.Gantry.gantrymiddle.Side |
007 | Middle = game.Workspace.Rocket.RocketModel.Middle |
010 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 10" |
011 | print ( "Omicron I Launching in 10" ) |
013 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 9" |
014 | print ( "Omicron I Launching in 9" ) |
016 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 8" |
017 | print ( "Omicron I Launching in 8" ) |
019 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 7" |
020 | print ( "Omicron I Launching in 7" ) |
022 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 6" |
023 | print ( "Omicron I Launching in 6" ) |
025 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 5" |
026 | print ( "Omicron I Launching in 5" ) |
028 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 4" |
029 | print ( "Omicron I Launching in 4" ) |
031 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 3" |
032 | print ( "Omicron I Launching in 3" ) |
034 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 2" |
035 | print ( "Omicron I Launching in 2" ) |
037 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launching in 1" |
038 | print ( "Omicron I Launching in 1" ) |
040 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Ignition" |
043 | explosion = Instance.new( "Explosion" ) |
044 | explosion.BlastRadius = 50 |
045 | explosion.BlastPressure = 1000 |
046 | explosion.DestroyJointRadiusPercent = 0 |
047 | explosion.Position = Booster.Position |
048 | explosion.Parent = game.Workspace |
050 | explosion = Instance.new( "Explosion" ) |
051 | explosion.BlastRadius = 50 |
052 | explosion.BlastPressure = 1000 |
053 | explosion.DestroyJointRadiusPercent = 0 |
054 | explosion.Position = Booster.Position |
056 | Main.Velocity.y > 100 |
058 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Liftoff." |
061 | explosion = Instance.new( "Explosion" ) |
062 | explosion.BlastRadius = 50 |
063 | explosion.BlastPressure = 750 |
064 | explosion.DestroyJointRadiusPercent = 0 |
065 | explosion.Position = Booster.Position |
067 | explosion = Instance.new( "Explosion" ) |
068 | explosion.BlastRadius = 50 |
069 | explosion.BlastPressure = 2500 |
070 | explosion.DestroyJointRadiusPercent = 0 |
071 | explosion.Position = Booster.Position |
073 | explosion = Instance.new( "Explosion" ) |
074 | explosion.BlastRadius = 50 |
075 | explosion.BlastPressure = 3000 |
076 | explosion.DestroyJointRadiusPercent = 0 |
077 | explosion.Position = game.Workspace.Rocket.RocketModel.Booster |
078 | until Main.Velocity.y > 21000 |
080 | if Main.Velocity.y > 20000 |
083 | if Main.Velocity.y > 19500 |
086 | explosion = Instance.new( "Explosion" ) |
087 | explosion.BlastRadius = 50 |
088 | explosion.BlastPressure = 2500 |
089 | explosion.DestroyJointRadiusPercent = 0 |
090 | explosion.Position = Booster.Position |
092 | explosion = Instance.new( "Explosion" ) |
093 | explosion.BlastRadius = 50 |
094 | explosion.BlastPressure = 4750 |
095 | explosion.DestroyJointRadiusPercent = 0 |
096 | explosion.Position = Booster.Position |
097 | if Main.Velocity.y < 1 |
099 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Omicron I Launch Failed." |
101 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Please contact Launch Administrators." |
105 | until Main.Velocity.y > 10 |
106 | if Main.Velocity.y > 10 |
108 | print ( "Catastrophic Failure Imminent." ) |
109 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Catastrophic Failure Imminent. Please Clear the Area." |
111 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Systems Failed. Catastrophic Failure Imminent. Please Clear the Area" |
113 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Cooling Systems Failure. Danger Level - Extremely High" |
115 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Cooling Systems Reboot..." |
116 | explosion = Instance.new( "Explosion" ) |
117 | explosion.BlastRadius = 50 |
118 | explosion.BlastPressure = 100000 |
119 | explosion.DestroyJointRadius = 95 |
120 | explosion.Position = Booster.Position |
122 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Reboot Failed. Catastrophic Failure Imminent. Please Clear the Area" |
124 | explosion = Instance.new( "Explosion" ) |
125 | explosion.BlastRadius = 25 |
126 | explosion.BlastPressure = 5000 |
127 | explosion.DestroyJointRadius = 95 |
128 | explosion.Position = GantrySide.Position |
130 | local h = Instance.new( "Hint" ,Workspace) h.Text = "Operational Systems Failed. Shutting Down..." |
132 | explosion = Instance.new( "Explosion" ) |
133 | explosion.BlastRadius = 125 |
134 | explosion.BlastPressure = 500000 |
135 | explosion.DestroyJointRadius = 95 |
136 | explosion.Position = Middle.Position |
138 | explosion = Instance.new( "Explosion" ) |
139 | explosion.BlastRadius = 185 |
140 | explosion.BlastPressure = 7500 |
141 | explosion.DestroyJointRadius = 95 |
142 | explosion.Position = Top.Position |
150 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
Dev Console/Output:
20:00:25 -- Workspace.rocket.Explosion trigger.Script:77: bad argument #3 to 'Position' (Vector3 expected, got userdata)
20:00:25 -- Script 'Workspace.Rocket.Explosion trigger.Script', Line 77
20:00:25 -- Stack End