For a place i am making, which is in first person, i need to allow my mouse to move while the GUI is open
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 |
04 | local open = false |
05 |
06 | mouse.KeyDown:connect( function (key) |
07 | if key = = "q" then --replace this with the key you want |
08 | if open = = false then |
09 | open = true |
10 | script.Parent.ShopFrame.Visible = true |
11 | elseif open = = true then |
12 | open = false |
13 | script.Parent.ShopFrame.Visible = false |
14 | end |
15 | end |
16 | end ) |
what would I have to add or change to allow this?
GUI buttons have a field known as "Modal" that, when true, will unlock the mouse in first person as long as that button has its "Visible" field set to true. I would set it manually in Studio, then you will not have any problems. Hope I helped!
The mouse position can be locked to the center of the screen using MouseBehavior. Setting this property to Enum.MouseBehavior.LockCenter will lock the mouse to the center of the screen, Enum.MouseBehavior.Default will unlock the mouse.
If the mouse is locked, InputChanged will still fire when the player moves the mouse and will pass in the distance the mouse has moved.
1 | local UserInputService = game:GetService( "UserInputService" ) |
2 |
3 | UserInputService.MouseBehavior = Enum.MouseBehavior.LockCenter |
4 | UserInputService.InputChanged:connect( function (inputObject) |
5 | if inputObject.UserInputType = = Enum.UserInputType.MouseMovement then |
6 | print ( "delta is (" .. tostring (inputObject.Delta.x) .. ", " .. tostring (inputObject.Delta.y) .. ")" ) |
7 | end |
8 | end ) |
9 | --All of this will lock the mouse in the center and will tell you the delta |
If you want the mouse to be unlocked then use :
1 | local UserInputService = game:GetService( "UserInputService" ) |
2 | UserInputService.MouseBehavior = Enum.MouseBehavior.Default |
Unfortunately, as I know, ROBLOX has a mouse-lock-in feature when you go into first person, therefor you are not able to select any screen GUIs. You must be in third person to select and move screen GUIs.