Buggy Rotation? Grid Placement System.
Hello,
I have recently been making a Grid placement system for my game everything is going well except for the rotation.
https://gyazo.com/ee0466084ef50e1ca7a79a84df355b63
Issue 1: When I rotate when the mouse isn't moving, its really buggy. But when it is moving it's fine.
Issue 2: When the object is placed, the placed object isn't rotated.
Code:
01 | local mouse = game.Players.LocalPlayer:GetMouse() |
02 | local Model = workspace:WaitForChild( 'Window1' ) |
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 () |
28 | Model:SetPrimaryPartCFrame(CFrame.new(posX, posY + 3.3 , posZ)) |
29 | Model:SetPrimaryPartCFrame(Model.PrimaryPart.CFrame * CFrame.Angles( 0 , math.rad(Rot), 0 )) |
30 | mouse.TargetFilter = Model |
34 | local WindowCopy = game:GetService( 'ReplicatedStorage' ).Objects.Window 1 :Clone() |
35 | WindowCopy.Parent = workspace |
36 | WindowCopy:SetPrimaryPartCFrame(CFrame.new(posX, posY + 3.3 , posZ)) |
37 | mouse.TargetFilter = WindowCopy |
40 | mouse.Button 1 Down:Connect( function () |
Thank You.