01 | local Interval = 1 -- Your Interval |
02 | local Velocity = 2 -- Your Velocity |
03 | local StartPosition = Vector 3. new( 0 , 20 , 0 ) -- Your Start Position |
04 |
05 | while true do |
06 | local RandomAngle = Vector 3. new(math.random(- 360 , 360 ), math.random(- 360 , 360 ), math.random(- 360 , 360 )) |
07 | local Part = Instance.new( "Part" ) |
08 | local BodyVelocity = Instance.new( "BodyVelocity" ) |
09 | Part.Orientation = RandomAngle |
10 | Part.Position = StartPosition |
11 | BodyVelocity.Velocity = RandomAngle*Velocity |
12 | BodyVelocity.Parent = Part |
13 | Part.Parent = workspace |
14 | wait(Interval) |
15 | end |
Closed as Not Constructive by Zafirua and User#19524
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?