I am trying to spawn parts with a magnitude of 50 from a part, the center. How do I go about doing this??
01 | main = workspace.Enemy |
02 | tower = workspace.Tower |
03 | spawnradius = 50 |
04 | while true do |
05 | part = main:Clone() |
06 | part.BrickColor = BrickColor.Random() |
07 | mag = (part.Position - tower.Position).magnitude |
08 | if mag < 50 then |
09 | -- I have no idea what to do. |
10 | end |
11 | end |
I've thought about trying to understand how Roblox calculates magnitude but it has to do with something on absolute values. But being a 13-year-old, I have no idea how to find that. Any help would be appreciated. Solutions don't have to only rely on magnitudes.
You could use CFrames
to accomplish this since CFrame
is in object (local) space, so if you're referencing a point with the position (25,50,0)
you're actually referencing the point relative to the corresponding axes; 25 studs in the (object's) X axis, 50 studs in the (object's) Y axis and 0 studs in the (object's) Z axis.
1 | math.randomseed(tick()) |
2 | part.CFrame = CFrame.new( 0 , 0 , 0 ) * CFrame.Angles(math.rad(math.random( 0 , 360 ) - 180 ),math.rad(math.random( 0 , 360 ) - 180 ),math.rad(math.random( 0 , 360 ) - 180 )) -- set random rotation |
3 | part.CFrame = part.CFrame * CFrame.new(math.random( 50 , 75 ), 0 , 0 ) -- move 50-75 studs "forward" |
4 | part.CFrame = CFrame.new(part.CFrame.Position) * CFrame.Angles( 0 , 0 , 0 ) -- reset rotation |