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:
1 | script.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?
You would then add a debounce.
01 | on = false |
02 | script.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 |
13 | end ) |
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:
1 | m = 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:
1 | script.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