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

Problem with this script?

Asked by 10 years ago

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

So, I've made a Goal-Line technology script w/ part, and in the script it has a message, it then destroys the message, but cause the ball bounces in then out of the net, it makes two messages and only one gets deleted. Here is the script:

1script.Parent.Touched:connect(function(otherPart)
2    if otherPart.Name == "TPS" or otherPart.Name == "Ball" then
3        m = Instance.new("Message")
4        m.Parent = Workspace
5        m.Text = "Goal!"
6        wait(4)
7        m:Destroy()
8        end
9    end)

How do I make them both get deleted?

2 answers

Log in to vote
1
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
10 years ago

You would then add a debounce.

01on = false
02script.Parent.Touched:connect(function(otherPart)
03    if otherPart.Name == "TPS" or otherPart.Name == "Ball" then
04    if on == false then
05        on = true
06        m = Instance.new("Message")
07        m.Parent = Workspace
08        m.Text = "Goal!"
09        wait(4)
10        m:Destroy()
11        end
12    end
13end)
Ad
Log in to vote
0
Answered by 10 years ago

There is a simple way to fix this: 1. Add a new script as a child of that script; 2. Make that script 'child' Disabled; 3. Make that script 'child' Name 'MessageScript'

The script 'child's code must be:

1m = Instance.new("Message")
2        m.Parent = Workspace
3        m.Text = "Goal!"
4        wait(4)
5        m:Destroy()
6        script:remove()

And then the normal script:

1script.Parent.Touched:connect(function(otherPart)
2    if otherPart.Name == "TPS" or otherPart.Name == "Ball" then
3               cloneat = script.MessageScript:clone()
4               cloneat.Parent = game.Workspace
5               cloneat.Disabled = false
6        end
7    end)

Hope this helps! If it doesn't, tell me what appears in output. Thanks, marcoantoniosantos3

Answer this question