Works fine for me and I can't find the oopsie in the code, maybe its because I'm on Windows.
what kind of gameplay where you planning to put into it?
2D Minecraft, but no player character only the mouse pointer.
The code became a chaotic mess and the "gameplay" was completely devoid of anything resembling "fun".
Sodium wrote: ↑Sat Aug 05, 2023 5:53 pm
Works fine for me and I can't find the oopsie in the code, maybe its because I'm on Windows.
It is. Windows is kinda case insensitive, so if your would require paths like:
library = require("superlibrary") when file called "superLibrary", you still will be able to load this file.
And on any other then Windows os, your code will fail due to fact that other OSs is in most cases case sensitive. So it will be good idea to make sure that whenever you load some file to check if file path and/or name is same case as in code.
Last edited by GVovkiv on Sat Aug 05, 2023 9:02 pm, edited 1 time in total.
My kid asked me to give her some programming lessons. I agreed, with one condition: we are not starting programming lessons in roblox studio. So, I needed to get into some game framework in lua which will have less distractions, because raw lua exec/repl did not inspire even me.