C-Framing a model to a exact Vector3 Position without rotating it?
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.
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() |
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)) |
17 | clone.Archivable = false |
20 | script.Parent.Cover.Size = Vector 3. new( 18 ,a, 10 ) |
21 | script.Parent.Cover.CFrame = script.Parent.Part.CFrame+Vector 3. new( 0 ,a/ 2 , 0 ) |
25 | script.Parent.Gen.BillboardGui.Frame.TextLabel.Text = "Generating Car." |
27 | local model = Instance.new( "Model" ,Workspace) |
29 | LastPos = clone.VehicleSeat.Position |
30 | local all = clone:getChildren() |
32 | if all [ a ] :IsA( "BasePart" ) then |
39 | script.Parent.Gen.BillboardGui.Frame.TextLabel.Text = "Uncovering." |
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/