Is this a roblox issue?

Basically , i’m trying to make a script for a game the camera will be above the player, player will face a obby and try to complete it.

The complexity of the game mechanism is the fact the player will have to move and rotate all via they mouse.

When scripting i just found this issue:

The mouse is reconised for mouse.Move but not mouse.Button1Down, is this a bug i should report or its fixable?

In game i get the parsing expression error:

It’s because you used the local keyword before connecting it. Luau is trying to identify it as a variable, but the syntax is wrong.

Remove the local keyword and it should work. Or, if you want to store the connection, create a variable for it.

Thanks you i didn’t saw that typing mistake

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.