As this video shows im trying to make a propeller speed for a UAV and, im no genius but im a tad bit sure thats not how drones work in real life so some help would be nice
Code to make body move:
while task.wait(1) do
script.Parent.CFrame = script.Parent.CFrame + script.Parent.CFrame.LookVector
end
Code for propeller rotation:
while task.wait(2) do
script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0,0,math.rad(-18))
end
Roblox’s existing C++ engine is handling everything, and constraints are very stable if they don’t conflict. In this case, it’s just a spinning object, so no issue!