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

C-Framing a model to a exact Vector3 Position without rotating it?

Asked by
Nickoakz 231 Moderation Voter
11 years ago

Admins/Moderators, please do not close this and redirect me to "https://scriptinghelpers.org/questions/1485/c-framing-a-model-to-a-exact-vector3-position". That works to move my model, but it completely rotated it and made it face down into the floor. I'm serious, I'm on the verge of calling this project canceled.

Here is the code and the issue shown with pictures.

01function GenerateCar()
02    --pcall(function() LastCar:Destroy() end)
03    script.Parent.Gen.BillboardGui.Frame.Visible=true
04    script.Parent.Gen.BillboardGui.Frame.TextLabel.Text="Covering Area."
05    local clone=game.ServerStorage.Car:clone()
06    --Special CFramer
07    do
08        local modelCF=clone:GetModelCFrame()
09        local targetCFrame=script.Parent.Cover.CFrame
10        for i,v in pairs(clone:getChildren()) do
11            if v:IsA("BasePart") then
12                v.CFrame=targetCFrame:toWorldSpace(modelCF:toObjectSpace(v.CFrame))
13            end
14        end
15    end
View all 41 lines...

Here is the image when the spawner finishes. Don't worry about the anchored parts, as its used for demonstrational purposes. http://postimg.org/image/y99n8bsbx/

0
I need help bump. Nickoakz 231 — 11y

1 answer

Log in to vote
0
Answered by 11 years ago

Here. I tried the MoveTo() event. If this does not work then I will try a different remedy.

01function GenerateCar()
02    --pcall(function() LastCar:Destroy() end)
03    script.Parent.Gen.BillboardGui.Frame.Visible=true
04    script.Parent.Gen.BillboardGui.Frame.TextLabel.Text="Covering Area."
05    local clone=game.ServerStorage.Car:clone()
06    --Special CFramer
07    do
08        local v = clone:getChildren()
09        local modelCF=clone:GetModelCFrame()
10        local targetCFrame=script.Parent.Cover.CFrame
11        for i= 1,#v do
12            if v[i]:IsA("BasePart") then
13                v[i].CFrame=targetCFrame:MoveTo(modelCF:MoveTo(v[i].CFrame))
14            end
15        end
View all 42 lines...
0
You modified the cover, but the cover is not the problem. The parts of the vehicle literately appear one by one sideways and in the ground. But, here is the screen shot again, http://postimg.org/image/5p7e1wjcl/ Nickoakz 231 — 11y
0
Sorry I'm stumped. DhatBoiiPapi 10 — 11y
Ad

Answer this question