MagicLuau
(Script)
#1
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?
MagicLuau
(Script)
#2
In game i get the parsing expression error:
12345koip
(12345koip)
#3
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.
MagicLuau
(Script)
#4
Thanks you i didn’t saw that typing mistake
1 Like
system
(system)
Closed
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.