of     1   

trigun879
#539252Saturday, March 01, 2008 1:17 AM GMT

Would this work If I put the go button grouped to a box and I need it to fly Up in the air if the go button is pressed function onTouched(hit) script.Parent.Parent.Go.Velocity = (0,100,0) script.Parent.Parent.Go.BodyVelocity = true end
TravisDeP
#539272Saturday, March 01, 2008 1:20 AM GMT

No.............. ======================================================== function onT(hit) script.Parent.Parent.Go.BodyVelocity.velocity = Vector3.new (0, 100, 0) end script.Parent.Touched:connect(onT) ======================================================== Put body velocity in the brick and it will go up.
trigun879
#539278Saturday, March 01, 2008 1:22 AM GMT

Put this in the button or the box the button is in?

    of     1