Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to allow mouse to move in a GUI while in first person? [UNSOLVED]

Asked by
xancor1 10
10 years ago

For a place i am making, which is in first person, i need to allow my mouse to move while the GUI is open

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03 
04 local open = false
05 
06mouse.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
16end)

what would I have to add or change to allow this?

0
forgot to say, the mouse needs to be able to move when the shop is open, but lock in the middle again when it closes xancor1 10 — 10y

4 answers

Log in to vote
2
Answered by 9 years ago

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!

Ad
Log in to vote
1
Answered by 8 years ago

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.

1local UserInputService = game:GetService("UserInputService")
2 
3UserInputService.MouseBehavior = Enum.MouseBehavior.LockCenter
4UserInputService.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
8end)
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 :

1local UserInputService = game:GetService("UserInputService")
2 UserInputService.MouseBehavior = Enum.MouseBehavior.Default
Log in to vote
0
Answered by 10 years ago

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.

0
is there any way i could switch it to third person in the script? xancor1 10 — 10y
Log in to vote
0
Answered by 8 years ago

Just turn Modal on inside the GUI.

Answer this question