IiMZ
|
  |
| Joined: 20 Aug 2014 |
| Total Posts: 3578 |
|
| |
|
xlaser23
|
  |
| Joined: 10 Dec 2011 |
| Total Posts: 20341 |
|
|
| 08 May 2015 08:54 PM |
| Another way to bang ur mum c: |
|
|
| Report Abuse |
|
|
|
| 08 May 2015 09:29 PM |
Oh where do I even begin.
A script is basically logical instructions a computer can read which allows you to make objects in roblox do things. Roblox uses the Lua programming language.
See: https://www.youtube.com/watch?v=0LiaEDui2vE http://wiki.roblox.com/index.php?title=Scripting |
|
|
| Report Abuse |
|
|
|
| 08 May 2015 10:06 PM |
^^^^
I finally realize now.. Now I know how to explain it to other people. |
|
|
| Report Abuse |
|
|
|
| 08 May 2015 10:17 PM |
| You can look at free models and reverse engineer the scripts(hard way but I did it) or you could join a scripting community like scripting helpers to learn the basics. Then once you have a basic understanding of scripting look stuff up on the wiki or if the wiki does not explain something post it on the forum. |
|
|
| Report Abuse |
|
|
Zaphred
|
  |
| Joined: 22 Oct 2013 |
| Total Posts: 278 |
|
|
| 08 May 2015 10:18 PM |
www.codecademy.com
and do java script
Obvious black man :3 |
|
|
| Report Abuse |
|
|
|
| 08 May 2015 10:18 PM |
| Oh and also forgot the Lua Documentation is on the home page of their site. |
|
|
| Report Abuse |
|
|
|
| 08 May 2015 10:19 PM |
| @Zaphred Javascript does not work on roblox only Lua does(for now). |
|
|
| Report Abuse |
|
|
Zaphred
|
  |
| Joined: 22 Oct 2013 |
| Total Posts: 278 |
|
| |
|
|
| 08 May 2015 10:24 PM |
A script in this case is a piece of code the computer executes.
How do you script? Well you have to learn the syntax of a script, simply saying "please add 2 plus 2 thank you computer" won't work (I used to do that when I was starting way back when, I then searched up the wiki.) Here's some basic script, that you should be able to understand:
print("Hello world.") -- Outputs "Hello World" wait(1) -- Waits one second. print("Goodbye world.") -- Outputs "Goodbye World"
A slightly more complex script:
while wait(1) do -- Every one second repeat print("lol") -- Output "lol" end
So yeah, you can also look at free models, and reverse engineer the scripts as someone previously said. |
|
|
| Report Abuse |
|
|