I am attempting to create an egg tool that, when thrown, drops more eggs. The dropped egg is defined as p, and the thrown egg is defined as arrow. The trouble is that I can't figure out why my math.random dropping positions are breaking. Can anyone find anything wrong with the breaking line?
Attempt 1: p.Position = arrow.Position + (math.random(-5,5),math.random(5,10), math.random(-5,5)
Attempt 2: p.Position = arrow.Position + Vector3.new(math.random(-5,5),math.random(5,10), math.random(-5,5)
Please send help in a Private Message, not on the forum. |