How do I prevent this script from running multiple times (effects it has)
It makes tons of BodyVelocity
in the same part, I also need to destroy the body velocity after x amount of second but dont know exactly how, can anyone fix it making tons of Bodyvelocity
in the same part? Thanks.
I also tried to use debounce but that just slowed down the rate which makes more BodyVelocity
in the same part.
01 | script.Parent.Touched:Connect( function (touched) |
02 | if touched.Name = = "EF2" or touched.Name = = "EF1" then |
03 | local force = Instance.new( "BodyPosition" ,touched) |
04 | local noforce = script.Parent.Parent.destroy |
05 | local noforceclone = force:Clone().Parent = = force |
06 | force.MaxForce = Vector 3. new( 4000 , 4000 , 4000 ) |
07 | force.Parent = touched |
08 | force.Position = script.Parent.Parent.debripos.Position |
09 | end |
10 | end ) |
I've been trying to use the disconnect function somewhere in the script, but I can't find out how to make that work. The only thing I can think of is not letting the script run unless :FindFirstChild("Force") comes back as nil. This would make your script look like this:
01 | script.Parent.Touched:Connect( function (touched) |
02 | local check = touched:FindFirstChild( "Force" ) |
03 | if touched.Name = = "EF2" or touched.Name = = "EF1" and not check then |
04 | local force = Instance.new( "BodyPosition" ) |
05 | force.Parent = touched -- took this out of the parentheses, that method of parenting is deprecated. |
06 | local noforce = script.Parent.Parent.destroy |
07 | local noforceclone = force:Clone().Parent = = force |
08 | force.MaxForce = Vector 3. new( 4000 , 4000 , 4000 ) |
09 | force.Parent = touched |
10 | force.Position = script.Parent.Parent.debripos.Position |
11 | force.Name = "Force" |
12 | wait(x) |
13 | force:Destroy |
14 | end |
15 | end ) |
I know this is almost the same as a debounce, but give it a shot before you shoot it down.
-Cmgtotalyawesome