of     1   

Flameris
#183552381Sunday, February 14, 2016 1:54 AM GMT

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?

    of     1