of     1   

BlueDanny
#141211863Tuesday, July 22, 2014 11:18 PM GMT

I wish for this particular brick to stop moving when it hits a certain altitude... But I can't figure out this simple script.. Can anyone help fix it? Part = script.Parent local i = 0.1 repeat Part.CFrame = Part.CFrame + Vector3.new(0,i,0) wait() until Part.Position == Vector3.new(62, 12, -123) Part.CFrame = CFrame.new(Vector3.new(62, 12, -123))
cntkillme
#141212205Tuesday, July 22, 2014 11:21 PM GMT

until Part.Position.Y >= 12
OliverQueenN52
#141212390Tuesday, July 22, 2014 11:23 PM GMT

Then end
BlueDanny
#141212952Tuesday, July 22, 2014 11:29 PM GMT

THANK YOU SO MUCH.. The end doesn't work out to well.. Lol but I left that out and it was fine!

    of     1