As the title suggests, I made a custom camera system (which is essentially free-cam) for my game, however when I try to use Mouse.Hit.Postion, it doesn’t work with it, and instead goes to another place (not random, but not where it should be). I have tested and determined that it is indeed my custom camera script causing the issue, but i don’t know why.
Here is my script:
local camera = game.Workspace.CurrentCamera
local cameraPart = Instance.new("Part")
cameraPart.Anchored = true
cameraPart.Transparency = 1
cameraPart.CFrame = CFrame.new(Vector3.new(0,10,0), Vector3.new(0,0,0))
cameraPart.Orientation += Vector3.new(0,-90,0)
cameraPart.Parent = game.Workspace
cameraPart.Name = "CameraPart"
cameraPart.Size = Vector3.new(0,0,0)
repeat
camera.CameraType = Enum.CameraType.Fixed
camera.CameraSubject = cameraPart
wait()
until camera.CameraType == Enum.CameraType.Fixed
local uis = game:GetService("UserInputService")
local mouse = game.Players.LocalPlayer:GetMouse()
local speedMultiplier = 1
mouse.WheelForward:Connect(function()
speedMultiplier += .25
speedMultiplier = math.clamp(speedMultiplier, 1, 4+game.ReplicatedStorage.StartingGameInfo.Size.Value/48)
end)
mouse.WheelBackward:Connect(function()
speedMultiplier -= .25
speedMultiplier = math.clamp(speedMultiplier, 1, 4+game.ReplicatedStorage.StartingGameInfo.Size.Value/48)
end)
game.ReplicatedStorage.RemoteEvents.SetCameraPosition.OnClientEvent:Connect(function(x, y)
cameraPart.Position = Vector3.new(x*2-1, 5, y*2-1)
end)
game:GetService("RunService").RenderStepped:Connect(function(ds)
if uis:IsKeyDown(Enum.KeyCode.W) then
cameraPart.Position += Vector3.new(0,0,10*ds*speedMultiplier)
end
if uis:IsKeyDown(Enum.KeyCode.S) then
cameraPart.Position += Vector3.new(0,0,-10*ds*speedMultiplier)
end
if uis:IsKeyDown(Enum.KeyCode.A) then
cameraPart.Position += Vector3.new(10*ds*speedMultiplier,0,0)
end
if uis:IsKeyDown(Enum.KeyCode.D) then
cameraPart.Position += Vector3.new(-10*ds*speedMultiplier,0,0)
end
if uis:IsKeyDown(Enum.KeyCode.E) then
cameraPart.Position += Vector3.new(0,10*ds*speedMultiplier,0)
end
if uis:IsKeyDown(Enum.KeyCode.Q) then
cameraPart.Position += Vector3.new(0,-10*ds*speedMultiplier,0)
end
cameraPart.Position = Vector3.new(math.clamp(cameraPart.Position.X, 0, game.ReplicatedStorage.StartingGameInfo.Size.Value*2),math.clamp(cameraPart.Position.Y, 5, 20*game.ReplicatedStorage.StartingGameInfo.Size.Value/32),math.clamp(cameraPart.Position.Z, 0, game.ReplicatedStorage.StartingGameInfo.Size.Value*2))
camera.CFrame = cameraPart.CFrame
end)
In the screen shot attached, the beam is supposed to be going towards the mouse, but it goes to some far away spot, an example is (-5125, 8352, -9031), when my stuff is at (32, 1, 32)