Uh hello, as you say in the title of my question, I'm a beginner. I'm doing an Obby and I'm literally a very beginner, what I meant by that was? Well, I want to know how I control the speed of a part's movement with vector3. If it is not possible please explain to me another way, I just wanted to move the part :(
Moving Parts with Vector3 isn't too difficult. Try inserting this into a server script inside the part you want to move:
1 | while true do |
2 | wait( 1 ) |
3 | repeat |
4 | script.Parent.Position = Vector 3. new(script.Parent.Position.X + 1 , script.Parent.Position.Y, script.Parent.Position.Z) -- moves the part in the X axis |
5 | until script.Parent.Position.X > 50 -- 50 is the goal that the X axis must reach |
6 | wait( 1 ) |
7 | end |
I didn't test this out yet, so I'm not sure it will work.
Hello! parts have a velocity property that define how fast theyre go
While Moving parts and TweenService don
t replicate physics