I have a first person script but it doesn't let me move my mouse around while im in first person
here is the script:
local plr = game.Players.LocalPlayer
plr.CameraMode = "LockFirstPerson"
game:GetService("RunService").RenderStepped:connect(function()
for i,v in next, plr.Character:GetChildren() do
if v:IsA("Part") then
v.LocalTransparencyModifier = 0
end
end
end)
How can I move my mouse around while i am in first person? |