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

Created part floats to the camera Why?

Asked by 5 years ago
01local function Draw()
02    while wait() do
03    if LeftDown then
04      local PartP = Instance.new("Part",trash)
05        PartP.CanCollide = false
06                PartP.Size = Vector3.new(1,1,1)
07        PartP.Material = Enum.Material.Neon
08        PartP.Anchored = true
09    PartP.Position = mouse.Hit.p
10    end
11end

I am using Mouse.Hit.p and whenever I create a part it floats to my camera. Solution?

2
Set the mouse.Target to be the part so the mouse ignores the part. mouse.TargetFilter = PartP royaltoe 5144 — 5y

1 answer

Log in to vote
2
Answered by 5 years ago
Edited 5 years ago

Because you aimed at the part, so the new mouse.hit.p would be the surface of the part, it keeps getting the surface of the part thats why it fly towards you

Ad

Answer this question