Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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.

1local xPosition = handle.Position+math.random(-2,2)
2local 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.

01local p = Instance.new("Part")
02p.CFrame = CFrame.new(xPosition,yPosition,1)
03p.TopSurface = "Smooth"
04p.BottomSurface = "Smooth"
05p.Shape = Enum.PartType.Ball
06p.Size = Vector3.new(1, 1, 1)
07p.Transparency = (0.5)
08p.CanCollide = false
09p.Material = "Neon"
10p.BrickColor = BrickColor.new("Toothpaste")
11p.Parent = ws

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

01local p = Instance.new("Part")
02p.CFrame = CFrame.new(handle.Position)
03p.TopSurface = "Smooth"
04p.BottomSurface = "Smooth"
05p.Shape = Enum.PartType.Ball
06p.Size = Vector3.new(1, 1, 1)
07p.Transparency = (0.5)
08p.CanCollide = false
09p.Material = "Neon"
10p.BrickColor = BrickColor.new("Toothpaste")
11p.Parent = ws

Help would be very much appreciated!!

Answer this question