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

im trying to enable mouse movement in fp when key pressed?

Asked by 6 years ago
Edited 6 years ago

my game is based out of first person and im trying to enable mouse movement in first person when the key m is pressed and after key m is pressed again the mouse will stop movement and beome disabled heres my code

01local UserInputService = game:GetService("UserInputService")
02 
03 
04while true do
05    UserInputService.MouseIconEnabled = false
06 
07    function onKeyPress(actionName, UserInputState, input0bject)
08        if UserInputState == Enum.UserInputState.Begin then
09            UserInputService.MouseIconEnabled = true
10            UserInputService.ModalEnabled = true
11        end
12    end
13end
14 
15game.ContextActionService:BindAction("KeyPress", OnKeyPress, false, Enum.KeyCode.M)

UPDATE: the code is working now but i still cannot enable the movement of my mouse however i now have it when the mouse icon is enable it does not disable it self when clicked or it will not appear when m is pressed?

01local UserInputService = game:GetService("UserInputService")
02UserInputService.MouseIconEnabled = false
03UserInputService.InputBegan:Connect(function(input)
04    if input.KeyCode == Enum.KeyCode.M then
05        UserInputService.MouseIconEnabled = true
06        --if UserInputService.MouseIconEnabled == true then
07            --UserInputService.MouseIconEnabled = false
08        end
09    end
10end)

there is nothing in the output currently?

1 answer

Log in to vote
1
Answered by 6 years ago

im just gonna be honest what ever you were doing wasnt gonna ever work ill just give you the code now(local Script)

1game:GetService("UserInputService").InputBegan:Connect(function(input)
2    if input.KeyCode == Enum.KeyCode.M then
3        -- Let mouse move idk how to do that
4    end
5end)
0
dang i was way off everyone i went to said to code it like that, im never asking them for help with code again thats for sure skillfulzombie88 28 — 6y
Ad

Answer this question