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

Build System Flying Towards Camera?

Asked by 5 years ago

I have recently made a Building system but for some reason it flys towards the camera. I have spent hours trying to fix this error with no success.

https://gyazo.com/09df3bb688d3a81e47edbe75880a044e

Here is my code:

01local mouse = game.Players.LocalPlayer:GetMouse()
02local Model = workspace:WaitForChild('Window1')
03 
04local posX = mouse.Hit.X
05local posY = mouse.Hit.Y
06local posZ = mouse.Hit.Z
07 
08local function Snap()
09    posX = math.floor(mouse.Hit.X)
10    posY = mouse.Hit.Y
11    posZ = math.floor(mouse.Hit.Z)
12end
13 
14mouse.Move:Connect(function()
15    Snap()
View all 27 lines...

Thanks

1 answer

Log in to vote
0
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:

1Mouse.TargetFilter = workspace.Baseplate -- now the mouse ray will ignore the baseplate object

And here's your script but with the implementation:

01local mouse = game.Players.LocalPlayer:GetMouse()
02local Model = workspace:WaitForChild('Window1')
03 
04local posX = mouse.Hit.X
05local posY = mouse.Hit.Y
06local posZ = mouse.Hit.Z
07 
08local function Snap()
09    posX = math.floor(mouse.Hit.X)
10    posY = mouse.Hit.Y
11    posZ = math.floor(mouse.Hit.Z)
12end
13 
14mouse.Move:Connect(function()
15    Snap()
View all 28 lines...
1
Thanks So much! It Worked smaug1678 10 — 5y
0
Make sure to accept answers that work. So that others know that it works as well as to reward the person who answered. Vinceberget 1420 — 5y
Ad

Answer this question