How to make a Mobile FPS?

Yes but how do they reduce the sensitivity of mobile, thats what im asking.

They don’t as I said, they make their own Camera module, and that’s fully editable/changable for their own purposes.

Yes, but HOW do they do that is what im asking.
Please stop replying if you dont know how.

You can’t set Sensivity for mobile camera it’s just not a ‘HOW’
It’s a whole scripting what it takes.

2 Likes

I was able to change the sensitivity by changing a few lines in the “TouchThumbstick” in game.StarterPlayer.StarterPlayerScripts.PlayerModule.ControlModule and then inserting that new code into the module.

Not that hard tbh @varjoy

Code (Replace some stuff at line 126)

local y = currentMoveVector.y
if y > 0 then
    y = 0
end
			
local x = currentMoveVector.x
			
if x > 0.15 then
	x = 0.15
elseif x < -0.15 then
	x = -0.15
end
			
currentMoveVector = Vector3.new(x, 0, y)
1 Like

:man_shrugging:
I told you, you couldn’t change sensivity and you had to edit/make camera modules

If you ever make an adjustable UI like most mobile fps have, please let me know, I’d love to pay you to put it in my game. Games like pubg have it.