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

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:

01local mouse = game.Players.LocalPlayer:GetMouse()
02local Model = workspace:WaitForChild('ManaquinPose1')
03local posX = mouse.Hit.X
04local posY = mouse.Hit.Y
05local posZ = mouse.Hit.Z
06local gridSize = 1
07local Rot = 0
08 
09local function rotate()
10    Rot = Rot + 45
11    Model:SetPrimaryPartCFrame(Model.PrimaryPart.CFrame * CFrame.Angles(0, math.rad(Rot), 0))
12end
13 
14mouse.KeyDown:connect(function(key)
15    if key == "r" then
View all 46 lines...

Thanks!

0
it might be fixable by changing one of the zeros on line 30 into "math.pi/2" mybituploads 304 — 4y

Answer this question