User:Sncplay42/Lua Help: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Sncplay42 Draft rewrite of Lua Help |
>Blocco I've made the headers stand out. Rollback if desired. |
||
Line 5: | Line 5: | ||
This page provides tutorials to help users to learn Lua. | This page provides tutorials to help users to learn Lua. | ||
{{TitledBox/subheading|Introduction series - read these first!}} | {{TitledBox/subheading|<b style{{=}}"font-size:1.25em;">Introduction series - read these first!</b>}} | ||
{{CatList|Script Creation Walkthrough|Script Creation Walkthrough|How to create and run scripts.}} | {{CatList|Script Creation Walkthrough|Script Creation Walkthrough|How to create and run scripts.}} | ||
{{CatList|Flowcharts|Flowcharts|Using diagrams to show the "flow" of a script.}} | {{CatList|Flowcharts|Flowcharts|Using diagrams to show the "flow" of a script.}} | ||
Line 18: | Line 18: | ||
{{CatList|Generic for|Generic for|A special kind of loop for tables.}} | {{CatList|Generic for|Generic for|A special kind of loop for tables.}} | ||
{{TitledBox/subheading|Other Guides}} | {{TitledBox/subheading|<b style{{=}}"font-size:1.25em;">Other Guides</b>}} | ||
{{CatList|Absolute beginner's guide to scripting|Beginner's Guide to Scripting|If you've never worked with scripting before, look here.}} | {{CatList|Absolute beginner's guide to scripting|Beginner's Guide to Scripting|If you've never worked with scripting before, look here.}} | ||
{{CatList|Basic Scripting|Basic Scripting|Shows you some of the basics of scripting.}} | {{CatList|Basic Scripting|Basic Scripting|Shows you some of the basics of scripting.}} | ||
Line 24: | Line 24: | ||
{{CatList|In-Depth Scripting Guide|In-Depth Scripting Guide|}} | {{CatList|In-Depth Scripting Guide|In-Depth Scripting Guide|}} | ||
{{TitledBox/subheading|Introductions to Concepts}} | {{TitledBox/subheading|<b style{{=}}"font-size:1.25em;">Introductions to Concepts</b>}} | ||
{{CatList|Beginner's GUI Tutorial|What are GUIs?|This very in-depth guide explains what GUIs are.}} | {{CatList|Beginner's GUI Tutorial|What are GUIs?|This very in-depth guide explains what GUIs are.}} | ||
{{CatList|Introduction to Weapons|Intro to Weapons|An intro into the scripting of Weapons in Roblox.}} | {{CatList|Introduction to Weapons|Intro to Weapons|An intro into the scripting of Weapons in Roblox.}} | ||
Line 33: | Line 33: | ||
{{CatList|Random numbers|Random numbers|How to stop the same thing happening each time.}} | {{CatList|Random numbers|Random numbers|How to stop the same thing happening each time.}} | ||
{{TitledBox/subheading|Reference}} | {{TitledBox/subheading|<b style{{=}}"font-size:1.25em;">Reference</b>}} | ||
{{CatList|Scripting|Scripting|}} | {{CatList|Scripting|Scripting|}} | ||
{{CatList|Function Dump|Functions|A list of all the global (don't need an object) functions.}} | {{CatList|Function Dump|Functions|A list of all the global (don't need an object) functions.}} | ||
Line 39: | Line 39: | ||
{{CatList|Built-in functions|Built-in functions|Functions available in every [[Instance]].}} | {{CatList|Built-in functions|Built-in functions|Functions available in every [[Instance]].}} | ||
{{TitledBox/subheading|Example Scripts}} | {{TitledBox/subheading|<b style{{=}}"font-size:1.25em;">Example Scripts</b>}} | ||
{{CatList|How do I create a brick?|Creating a Brick|Basic tutorial on how to create a brick using a script.}} | {{CatList|How do I create a brick?|Creating a Brick|Basic tutorial on how to create a brick using a script.}} | ||
{{CatList|Debounce|IS:What is Debounce?|Explains what Debounce is, and what it's used for.}} | {{CatList|Debounce|IS:What is Debounce?|Explains what Debounce is, and what it's used for.}} |
Revision as of 18:05, 9 July 2011

Making your maps do crazy things
Lua is a simple programming language that is used in Roblox to add in customized content, like cars that drive, new weapons, etc.
This page provides tutorials to help users to learn Lua.