Like what kind of scripting do I need to know to make a game like NSOA (Onlineadventure made)
What scripting did he use?
I'd start with reading some tutorials.
I haven't made a game, but what I do you know is that you need to know how to clone you're map from the lighting and the MoveTo: script for the map. You might also want to know for i ='s functions and all of that.
That's the best that I know.
Here is an example of a script:
Touch door
H = game.Workspace.Part -- Just a shortcut for recognizing the brick function onTouch(Part) -- Naming the function H.Transparency = 1 -- The door turns fully transparent, invisible wait(5) -- Waits 5 seconds H.Transparency = 0 -- The door becomes fully visible again end -- Ends the script script.Parent.Touched:connect(onTouch) -- The most important part of a script
Hope it helped!