Hello, I'm kinda new into scripting and slowly learning. I'm struggling to find out how to change only the Y position in vector3, any clues?
1 | Part.Position = Vector 3. new(Part.Position.X, 3 ,Part.Position.Z) |
or
1 | Part.Position = Part.Position + Vector 3. new( 0 , 3 , 0 ) |