https://gyazo.com/c2623752e3d155d4cd8cd7a02368b0b2
So i want to know how to make something like in the gif i wanna like how it’s rotating or something like that.
First set up a viewport frame with the item inside, fairly simple the rotation part can be done in 2 ways
- Rotating the part itself in a while wait() loop, adding 1 to the Y value each loop
2.rotating the camera which is how it’s normally done but code be a bit tricky.
There is alot of tutorials on these type of stuff so you can follow them, you can use module3D to help you with that
Your welcome, glad I was able to help!
Yeah, the simplest solution is to add 1 to the Y axis of the part’s ‘Orientation’ property.
while task.wait() do
Part.Orientation += Vector3.new(0, 1, 0)
end