Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to understand scripting?

Asked by 10 years ago

Like what kind of scripting do I need to know to make a game like NSOA (Onlineadventure made)

What scripting did he use?

3 answers

Log in to vote
1
Answered by
Ekkoh 635 Moderation Voter
10 years ago

I'd start with reading some tutorials.

Beginner's Guide to Advanced Tutorials

0
Can you give me a little example like right now so I can start creating a new script? Like help me out, I'm in studio I need someone to teach me just quickly. redlogo 0 — 10y
1
Learning to program isn't an easy thing to do. You need to learn the Language, like if you was going to Germany, you'd have to learn German, to communicate. It's the same with ROBLOX Lua, and other programs. hiccup111 231 — 10y
0
If you just want to be "taught quickly", then you have the wrong idea. It's not something you become an expert at in 5 minutes, you'll have to put some time and effort into it. Ekkoh 635 — 10y
0
The best scripters, such as Ananimus or ScriptOn for example, spent YEARS studying scripting. It takes time to learn. bloonblaster2000 55 — 10y
Ad
Log in to vote
0
Answered by 10 years ago

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.

Log in to vote
0
Answered by 10 years ago

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!

Answer this question