Help Right Click Top Down

me and my friend whe are making a top down game, where your chracter aways face the mouse.
but whe want the right click to block attacks.

while your holding right click the mouse stop to move.

have any way to disable that.
the player supose to be able to defend attacks and move the mouse while holding rigith click.

1 Like

If you want to disable shift lock/mouse lock then run game.StarterPlayer.EnableMouseLockOption = false in your command bar, or you can click on the StarterPlayer service and click the checkmark next to “EnableMouseLockOption” if you’d like to do it manually. If you do it manually here is a gif of how to do it. https://i.gyazo.com/6c91cf36d4785790406cd4da63e41c6b.mp4 (you can click it and full screen it)

Top down camera?

Like you’ll only see your character’s head and shoulders?

If you want the character to always face the mouse use Cframe and Mouse.Hit

if you want more details let me know

the game aready have disabled the mouse lock

this is the place if you wanna test out but it needs at least 2 players for test.

Can you explain what you’re trying to do I don’t really understand what you mean.

the camera is top down
whe wanna set the right mouse click to enter in defence mode
currently the block button is space
but when whe set the right button to defend, the mouse not move for rotate the character while holding the right mouse button

That’s like trying to use the W key for ‘forward’ AND ‘attack’ at the same time.
You are taking away the R mouse button ability to rotate the camera when you set it for ‘defend’.

I believe he’s asking if there’s a way to script it to do both?

its a top down game
player will not have acess to rotate the camera with right mouse

Guys, hes saying that he wants to know how to make it so when the player right clicks his character starts defending and his mouse freezes in place.

This is how you lock the mouse in place:

local UserInputService = game:GetService("UserInputService")
 
UserInputService.MouseBehavior = Enum.MouseBehavior.LockCurrentPosition

whe want the mouse to move free
currently the mouse stops when you hold right click.

The issue he is having is that when you right click in the default camera mode, the client locks the mouse and uses the delta to rotate the camera.

However since his camera is custom and doesn’t involve rotation at all, he wants to bind an action to RMB. But Roblox still locks the mouse in place when you hold it down, so it isn’t great for gameplay as you want to be able to move your mouse.


Have you tried setting the camera mode? I believe Scriptable may be the solution to your issue

Scriptable Camera doesn’t change anything

Damn, I’m beat lol

Maybe you need make a feature request for some way to unlock the right mouse button.

1 Like

Does the mouse move when you hold “left click” down? I just wondered if the input from both buttons gives different results.

Also, if you are defending while holding “right click” why do you need to move the mouse?

It only happens with right click. Ever noticed how annoying it is when the mouse isn’t locked and you’re trying to rotate your camera?

Also I’m not sure what you mean exactly – I’m wasn’t defending anything, I was just clarifying what the OP was trying to say and explaining why the thing causing the issue was implemented, since people weren’t understanding.

the game is based in battlerite
the character rotate aways facing the mouse
right click supose to defend attacks
but if whe set the right click to defend the character stops to rotate while holding down the Right mouse button

Yeah I know that…

Sorry EmeraldSlash, I should’ve been replying to EG_Dark, not you.
I wasn’t implying you were defending anything in the post, I meant in game if you right click to defend…
EG_Dark answered my question though.

1 Like

Character faces mouse, but upon block attacks it won’t continue to face the mouse? Hmm are you using a while true do loop? If so have you considered trying to use coroutines?

Maybe I’m just wrong. It doesn’t make much sense, you run a loop to face the mouse and above that you have a function for right click, why wouldn’t it still face the mouse?