So the reason your rocketpropulsion isn’t aborting is because your script will check to see if it is within the range of the target object almost immediately after the “Fire()” function is activated. Thus, most of the times it won’t have had the time to reach the target. There are a few ways to go about checking but this one worked for me althought it might not be ideal:
1 | local RocketPropulsion = Instance.new( "RocketPropulsion" , script.Parent) |
2 | RocketPropulsion.Target = game.Workspace.Target |
3 | RocketPropulsion.TargetRadius = 5 |
7 | RocketPropulsion.ReachedTarget:Wait() |
8 | RocketPropulsion:Abort() |
One thing to keep in mind is that if your target part is big (for example, has a size of (10,10,10)) and your TargetRadius is small. For example TargetRadius = 1. Then the ReachedTarget condition will never be met since the location of an object is in it’s centre.
An important thing you could have done to improve your code:
1 | local rocketPart = script.Parent |
3 | rocketPart.RocketPropulsion:Fire() |
4 | if rocketPart.RocketPropulsion.ReachedTarget() then |
5 | rocketPart.RocketPropulsion:Abort() |
7 | rocketPart.RocketPropulsion:Fire() |
is that you could have used a loop (while or repeat loop), or a function:
2 | local rocketPart = script.Parent |
4 | rocketPart.RocketPropulsion:Fire() |
6 | RocketPart.RocketPropulsion.ReachedTarget:Connect(Function() |
7 | rocketPart.RocketPropulsion:Abort() |
Now I know that I’m not the best programmer and perhaps not even decent. And I may have made this more complicated than it has to be but this is how I would go about doing it.
Also, in your code, it only checks if the part has reached it’s target once. So to check it a lot of times and see if the part has reached it’s target you could have used loops.
02 | local RocketPropulsion = Instance.new( "RocketPropulsion" , script.Parent) |
03 | RocketPropulsion.Target = game.Workspace.Target |
07 | RocketPropulsion:Fire() |
08 | RocketPropulsion.ReachedTarget:Wait() |
10 | RocketPropulsion:Abort() |
11 | RocketPropulsion:Destroy() |
–or if you want to to loop X amount of times:
02 | local loopThisManyTimes = 3 |
06 | if x < = loopThisManyTimes then |
07 | local RocketPropulsion = Instance.new( "RocketPropulsion" , script.Parent) |
08 | RocketPropulsion.Target = game.Workspace.Target |
12 | RocketPropulsion:Fire() |
13 | RocketPropulsion.ReachedTarget:Wait() |
15 | RocketPropulsion:Abort() |
16 | RocketPropulsion:Destroy() |
end