You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
Rotate my car modeled in blender
What is the issue? Include screenshots / videos if possible!
I cant find a soulution to rotate it
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
ive tried to look for soulutions on youtube and dev fourms and cant
Give the Model a PrimaryPart and you can use CFrames to rotate that part and it will rotate the entire model. If that works, you can mark my answer as a solution.
Set a PrimaryPart, which is in the models property, after that, make a script inside the model and
Type this:
while wait() do
local PrimCFrame = script.Parent:GetPrimaryPartCFrame()
local Rotation = CFrame.Angles(math.rad(90),0,0)
local RotatedCFrame = PrimCFrame * Rotation
script.Parent:SetPrimaryPartCFrame(RotatedCFrame)
end
Set a PrimaryPart, which is in the models property, after that, make a script inside the model and
Type this:
while wait() do
local PrimCFrame = script.Parent:GetPrimaryPartCFrame()
local Rotation = CFrame.Angles(math.rad(90),0,0)
local RotatedCFrame = PrimCFrame * Rotation
script.Parent:SetPrimaryPartCFrame(RotatedCFrame)
end