Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What am I doing wrong? [Solved]

Asked by 10 years ago

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").

001print("Script Active. Waiting Launch.")
002local h = Instance.new("Hint",Workspace) h.Text = "Omicron I Ready for Launch."
003Main = game.Workspace.Rocket.RocketModel.Head
004Top = game.Workspace.Rocket.RocketModel.Head2
005Booster = game.Workspace.Rocket.RocketModel.Booster
006GantrySide = game.Workspace.Gantry.gantrymiddle.Side
007Middle = game.Workspace.Rocket.RocketModel.Middle
008 
009function onClicked()
010    local h = Instance.new("Hint",Workspace) h.Text = "Omicron I Launching in 10"
011    print("Omicron I Launching in 10")
012    wait(1)
013    local h = Instance.new("Hint",Workspace) h.Text = "Omicron I Launching in 9"
014    print("Omicron I Launching in 9")
015    wait(1)
View all 150 lines...

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

1 answer

Log in to vote
1
Answered by 10 years ago

Probably an extra end. Remove the end on line 32.

0
132* DominusAstra -2 — 10y
0
it worked, now I'm doing a bunch more trouble-shooting on it... go figure.... areiydenfan00 115 — 10y
Ad

Answer this question