ReachedTarget (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy Fixed |
>Tenal No edit summary |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 3: | Line 3: | ||
|arguments = | |arguments = | ||
|description = Fired when the Rocket comes within [[TargetRadius]] of the [[Target]]. This is used to make the rocket work, such as make an explosion when it flies near the Target. | |description = Fired when the Rocket comes within [[TargetRadius]] of the [[Target]]. This is used to make the rocket work, such as make an explosion when it flies near the Target. | ||
|object = | |object = RocketPropulsion | ||
|}}</onlyinclude> | |}}</onlyinclude> | ||
|} | |} | ||
{{Example|<pre> | |||
game.Workspace.Part.RocketPropulsion.ReachedTarget:connect(function() | |||
print("Reached target") | |||
end) | |||
</pre>}} | |||
[[Category:Events]] |
Latest revision as of 03:41, 7 February 2012
|
Example
game.Workspace.Part.RocketPropulsion.ReachedTarget:connect(function() print("Reached target") end)