User:ENET/StepByStep: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ENET
Created page with "{{TitledBox/start|heading=Step By Step Guide to Scripting with ENET|green|margin-right:20px; margin-left:20px;}} Welcome to my step by step guide to scripting. This is knowled..."
 
>ENET
No edit summary
Line 5: Line 5:


===Lesson 1 - Game Indexing===
===Lesson 1 - Game Indexing===
In this lesson, you will learn how roblox indexs different parts of the game via scripts.
This is the most important part of making roblox games and models.
===Lesson 2 - Variables===
===Lesson 2 - Variables===
===Lesson 3 - Integers/Numbers===
===Lesson 3 - Integers/Numbers===
Line 14: Line 12:
===Lesson 7 - Functions===
===Lesson 7 - Functions===
===Lesson 8 - Tables===
===Lesson 8 - Tables===
===Lesson 9 - Code Flow===


==Chapter 2 - Beginners==
==Chapter 2 - Beginners & Loops==
===Lesson 1 - Creating Your First Script===
===Lesson 1 - Conditionals===
In this lesson we will create a simple door that opens and closes when a button is pressed.
===Lesson 2 - While(x) Loop===
This will not be the same as free model doors. I am going to show you how to make code that is
===Lesson 3 - Repeat Loop===
efficient and doesn't require but one script to control all the buttons and the door! This should
===Lesson 4 - For Loop===
be a great way to kick start things.
===Lesson 5 - Recursive Loop===
 
===Lesson 6 - Tail-Call Loop===
 


==Chapter 3 - Introduction To Scripting==
In these lessons, you will be introduced to actual scripting. We will read, write, modify, and analyze code.
===Lesson 1 - The Importance of Documenting Your Code===
===Lesson 2 - Reading a Script===
===Lesson 3 - Modifying a Script===
===Lesson 4 - Writing a Script===
===Lesson 5 - Analyzing a Script===


{{TitledBox/end}}
{{TitledBox/end}}

Revision as of 02:31, 1 February 2012

Step By Step Guide to Scripting with ENET

Welcome to my step by step guide to scripting. This is knowledge that I found to increment my intelligence of scripting, and further my knowledge. My methods will not work for all users, but for most users they should. Below is a list of all the lessons and some information reguarding them.

Chapter 1 - New to Scripting(newbs)

Lesson 1 - Game Indexing

Lesson 2 - Variables

Lesson 3 - Integers/Numbers

Lesson 4 - Booleans

Lesson 5 - Strings

Lesson 6 - Objects

Lesson 7 - Functions

Lesson 8 - Tables

Lesson 9 - Code Flow

Chapter 2 - Beginners & Loops

Lesson 1 - Conditionals

Lesson 2 - While(x) Loop

Lesson 3 - Repeat Loop

Lesson 4 - For Loop

Lesson 5 - Recursive Loop

Lesson 6 - Tail-Call Loop

Chapter 3 - Introduction To Scripting

In these lessons, you will be introduced to actual scripting. We will read, write, modify, and analyze code.

Lesson 1 - The Importance of Documenting Your Code

Lesson 2 - Reading a Script

Lesson 3 - Modifying a Script

Lesson 4 - Writing a Script

Lesson 5 - Analyzing a Script