Grid Placement system, Model Tilted Sideways?
Asked by
5 years ago Edited 5 years ago
Hello,
I have recently been making a grid placement system but for some reason, the models are sideways and I can't figure out why.
The models aren't sideways when in edit mode but when I play it goes sideways.
https://gyazo.com/ae6452dfe1f252967c7ce9a507ea1844
Code:
01 | local mouse = game.Players.LocalPlayer:GetMouse() |
02 | local Model = workspace:WaitForChild( 'ManaquinPose1' ) |
03 | local posX = mouse.Hit.X |
04 | local posY = mouse.Hit.Y |
05 | local posZ = mouse.Hit.Z |
09 | local function rotate() |
11 | Model:SetPrimaryPartCFrame(Model.PrimaryPart.CFrame * CFrame.Angles( 0 , math.rad(Rot), 0 )) |
14 | mouse.KeyDown:connect( function (key) |
21 | posX = math.floor(mouse.Hit.X / gridSize + 0.5 ) * gridSize |
23 | posZ = math.floor(mouse.Hit.Z / gridSize + 0.5 ) * gridSize |
26 | mouse.Move:Connect( function () |
27 | if mouse.Target.Name = = 'Floor' then |
29 | Model:SetPrimaryPartCFrame(CFrame.new(posX, posY + 3.3 , posZ)) |
30 | Model:SetPrimaryPartCFrame(Model.PrimaryPart.CFrame * CFrame.Angles( 0 , math.rad(Rot), 0 )) |
31 | mouse.TargetFilter = Model |
36 | if mouse.Target.Name = = 'Floor' then |
37 | local WindowCopy = game:GetService( 'ReplicatedStorage' ).Objects.ManaquinPose 1 :Clone() |
38 | WindowCopy.Parent = workspace |
39 | WindowCopy:SetPrimaryPartCFrame(CFrame.new(posX, posY + 3.3 , posZ) * CFrame.Angles( 0 , math.rad(Rot), 0 )) |
40 | mouse.TargetFilter = WindowCopy |
44 | mouse.Button 1 Down:Connect( function () |
Thanks!