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

How do I do this?

Asked by 9 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

Trying to make a script where if an object named missile touches the brick, both the missile and brick removes.

missile = workspace:FindFirstChild("Missile")

function onTouched(hit)

--I dont know what to do here

end

Help would be appreciated!

0
Please make your question title relevant to your question content. It should be a one-sentence summary in question form. Thanks! :) AmericanStripes 610 — 9y

1 answer

Log in to vote
1
Answered by
yoshiegg6 176
9 years ago

You don't need to find it in the workspace just find the name of the part that touched it.

function MissileDetector(hit) --hit argument is the object that touched it
if hit.Name == "Missile" then --If what touched it's name is missile then
--Do whatever you want
end
end

script.Parent.Touched:connect(MissileDetector)

Tell me if it works. Don't forget to upvote and accept the answer.

0
correction: if hit.Name == "Missile" then LevelKap 114 — 9y
0
That gets me every time :/ yoshiegg6 176 — 9y
Ad

Answer this question