How does Random Relative Positions work?
Asked by
8 years ago Edited 8 years ago
So in a script I have a fire ball being launched through the torso, now this fire ball is being shot out like a firestorm but I don't want it to be in the same place every time or else it'll look like a laser beam.
1 | local xPosition = handle.Position+math.random(- 2 , 2 ) |
2 | local yPosition = handle.Position+math.random(- 1 , 3 ) |
so I had this done, it doesn't work obviously, handle represents the humanoid torso and I'm using Cframe for the starting position of said fireball seen here.
01 | local p = Instance.new( "Part" ) |
02 | p.CFrame = CFrame.new(xPosition,yPosition, 1 ) |
03 | p.TopSurface = "Smooth" |
04 | p.BottomSurface = "Smooth" |
05 | p.Shape = Enum.PartType.Ball |
06 | p.Size = Vector 3. new( 1 , 1 , 1 ) |
10 | p.BrickColor = BrickColor.new( "Toothpaste" ) |
How do I make it so that the part is spawned in randomly on the X and Y coordinates relative to humanoid torso?
vvvv This works but it's in one constant line vvvv
01 | local p = Instance.new( "Part" ) |
02 | p.CFrame = CFrame.new(handle.Position) |
03 | p.TopSurface = "Smooth" |
04 | p.BottomSurface = "Smooth" |
05 | p.Shape = Enum.PartType.Ball |
06 | p.Size = Vector 3. new( 1 , 1 , 1 ) |
10 | p.BrickColor = BrickColor.new( "Toothpaste" ) |
Help would be very much appreciated!!