When i try to write my code, it only writes in blue and workspace objects
I think i pressed a key bind or something but i am not sure, i tried searching far and wide for similar problems that people might have had but i found nothing.
local whatever:w
is a local variable declaration, and after “:” you can add only type that specifies type of whatever.
Roblox studio suggests available types.
if you by any chance need objects from workspace than it can be done this way: local object = workspace:WaitForChild("child_name")
Thank you, i was getting frustrated and didn’t think clearly after coding for 8 hours already. I saw what dumb mistake i made haha. Of course a local pcControlsFolder is not connected to anything, its something that i just defined out of thin air xD