of     1   

Zoshi
#24483216Sunday, April 18, 2010 10:28 PM GMT

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.
oysi93
#24483434Sunday, April 18, 2010 10:31 PM GMT

p.Position = arrow.Position + Vector3.new(math.random(-5,5),math.random(5,10), math.random(-5,5)) You missed a )
Zoshi
#24601088Wednesday, April 21, 2010 7:15 PM GMT

Tried that already. The problem is that the line is only slightly edited from the snowball script. I didn't even delete any parenthasis.
Shady1234
#24601472Wednesday, April 21, 2010 7:25 PM GMT

Oysi should of fixed the problem already. Its still doesnt work? hmm..
rachnera
#24602402Wednesday, April 21, 2010 7:45 PM GMT

oysi was right, so do you have the parents right? i mean what is arrow? game.Workspace.arrow? script.Parent.arrow?

    of     1