Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does this Rotation Script not work?

Asked by 9 years ago

All I am trying to do is make a model move/spin. But when I do this it doesn't move together and splits apart. I am pretty sure there is a way to do this, but I do not know how.

01local model = script.Parent
02 
03function Move()
04    for _,part in pairs (model:GetChildren()) do
05        if part.ClassName == "Part" then
06            part.Rotation = part.Rotation + Vector3.new(1,0,0)
07        end
08    end
09end
10 
11 
12while true do
13    Move()
14    wait(1) -- speed
15end

1 answer

Log in to vote
0
Answered by 9 years ago

Yes, there is a way to do this. I have never used the Vector3 of Rotation. Although, because it's Vector3, the second the part starts to rotate and Collides with another object, the part will be moved upwards until that collision no longer exists.

  • So, how can we rotate the parts without the allowance of collision?

We use a CFrame instead of Vector3! Well, what is CFrame? CFrame or Coordinate Frame is what defines an objects location and it's rotation as well. CFrame allows us to place one part inside of another.

So, to do this we need to go to the part then it's CFrame ( part.CFrame ). Due to us wanting to Rotate the part, we'll use CFrame.Angles. This is the same thing as CFrame.fromEulerAnglesXYZ, just basically a shorter name. Now, here is what your script will look like:

01local model = script.Parent
02 
03function Move()
04    for _,part in pairs (model:GetChildren()) do
05        if part.ClassName == "Part" then
06            part.CFrame = part.CFrame * CFrame.Angles(1, 0, 0) -- Only change is here!
07        end
08    end
09end
10 
11while true do
12    Move()
13    wait(1) -- speed
14end

You may want to adjust the (1,0,0) to your liking. You can find more information about CFrame here

I would suggest removing where you'll make this script a function and switch out where function Move() is and place the while true do, don't forget the wait!

Accept and UpVote if I helped, Ask if you have any questions!

Ad

Answer this question