Answered by
5 years ago Edited 5 years ago
The problem is that the ray from the mouse is hitting the object you're trying to build, thus moving it slightly closer to the camera each tick.
To bypass this you can use Mouse.TargetFilter, which determines what objects should be ignored when casting the ray.
Here's the syntax and context of the code:
1 | Mouse.TargetFilter = workspace.Baseplate |
And here's your script but with the implementation:
01 | local mouse = game.Players.LocalPlayer:GetMouse() |
02 | local Model = workspace:WaitForChild( 'Window1' ) |
04 | local posX = mouse.Hit.X |
05 | local posY = mouse.Hit.Y |
06 | local posZ = mouse.Hit.Z |
09 | posX = math.floor(mouse.Hit.X) |
11 | posZ = math.floor(mouse.Hit.Z) |
14 | mouse.Move:Connect( function () |
16 | Model:SetPrimaryPartCFrame(CFrame.new(posX, posY + 3.7 , posZ)) |
20 | local WindowCopy = game:GetService( 'ReplicatedStorage' ).Objects.Window 1 :Clone() |
21 | WindowCopy.Parent = workspace |
22 | WindowCopy:SetPrimaryPartCFrame(CFrame.new(posX, posY + 3.7 , posZ)) |
23 | mouse.TargetFilter = WindowCopy |
26 | mouse.Button 1 Down:Connect( function () |