Nenno
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 9208 |
|
|
| 14 Aug 2014 01:37 PM |
I can actually get awards! Read chiefjustus' post.
People who use siggys are tryhards. |
|
|
| Report Abuse |
|
|
iwillkill
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 8463 |
|
| |
|
| |
|
|
| 14 Aug 2014 01:40 PM |
http://www.roblox.com/Forum/ShowPost.aspx?PostID=143581650
read it if you already haven't |
|
|
| Report Abuse |
|
|
|
| 14 Aug 2014 01:40 PM |
| one doesnt simply learn lua. i tryed many times to get my mind focus on learning it, i slap my self my hardest one time but still didn't work. |
|
|
| Report Abuse |
|
|
Nenno
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 9208 |
|
|
| 14 Aug 2014 01:41 PM |
Function Ghostify (part)
Game.Workspace.Baseplate.Transparency = 1
end
People who use siggys are tryhards. |
|
|
| Report Abuse |
|
|
|
| 14 Aug 2014 01:42 PM |
| even though u could had copy that, one does not simply make an good game in 1 week. |
|
|
| Report Abuse |
|
|
|
| 14 Aug 2014 01:44 PM |
| I'm looking forward to that, I might actually learn something. |
|
|
| Report Abuse |
|
|
Nenno
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 9208 |
|
|
| 14 Aug 2014 01:46 PM |
I want to learn Lua because it's my dream to make a actually functioning game.
People who use siggys are tryhards. |
|
|
| Report Abuse |
|
|
|
| 14 Aug 2014 01:48 PM |
| Good luck! We hope to make learning fun. |
|
|
| Report Abuse |
|
|
| |
|
|
| 14 Aug 2014 01:51 PM |
Simple Lua scripts is actually pretty easy.
Like changing properties or connecting events. That's easy. |
|
|
| Report Abuse |
|
|
| |
|
|
| 14 Aug 2014 01:52 PM |
Guys the questions arnt going to be complex only basic questions like
what is while true do?
what is a for loop?
what does parent mean
stuff like this
this test is aimed towards kids so it has to be easy and it has to be multiple choice due to it will require moderation if not |
|
|
| Report Abuse |
|
|
Nenno
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 9208 |
|
|
| 14 Aug 2014 01:58 PM |
I think while true do goes like this,
myVariable = 2
while myVariable = 2 true print ("Correct")
I am beggining though, I think what I said was wrong
People who use siggys are tryhards. |
|
|
| Report Abuse |
|
|
Flylux
|
  |
| Joined: 23 May 2010 |
| Total Posts: 4804 |
|
|
| 14 Aug 2014 02:02 PM |
Ahahahah Good luck
Took me 3 years to get to were I am with scripts and building
//: The Tryhard of ATR |
|
|
| Report Abuse |
|
|
Siccity
|
  |
| Joined: 21 Jun 2009 |
| Total Posts: 14782 |
|
|
| 14 Aug 2014 02:03 PM |
You're almost correct with that while loop.
myVariable = 2
while myVariable = 2 true print "Correct" -- Unless you're printing a variable or concatenation (Strings and/or variables linked together using "..", so print("The number is: "..myVariable) would print "The number is: 2") wait() -- Otherwise, the game crashes because the while loop runs w/o a break end -- you forgot an ending |
|
|
| Report Abuse |
|
|
thetacah
|
  |
| Joined: 18 Jan 2013 |
| Total Posts: 16026 |
|
|
| 14 Aug 2014 02:06 PM |
| Siccity apparently can't script. FAIL |
|
|
| Report Abuse |
|
|
Nenno
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 9208 |
|
|
| 14 Aug 2014 02:07 PM |
Oh yeah, the ending.
Also, I forgot I'm printing a string. Thank you man!
People who use siggys are tryhards. |
|
|
| Report Abuse |
|
|
Siccity
|
  |
| Joined: 21 Jun 2009 |
| Total Posts: 14782 |
|
|
| 14 Aug 2014 02:07 PM |
(I changed formatting and fixed another problem)
You're almost correct with that while loop.
myVariable = 2
while myVariable == 2 true
-- If you're showing something is equal in a condition (the thing a while loop or if statement -- checks if it's true), you have to use two "=", not one.
print "Correct"
-- Unless you're printing a variable or concatenation (Strings and/or variables linked together -- using "..", so print("The number is: "..myVariable) would print "The number is: 2")
wait() -- Otherwise, the game crashes because the while loop runs w/o a break end -- you forgot an end, or else the while loop doesn't know when to stop |
|
|
| Report Abuse |
|
|
Siccity
|
  |
| Joined: 21 Jun 2009 |
| Total Posts: 14782 |
|
|
| 14 Aug 2014 02:08 PM |
@Theta
I'm not sure if you're trolling or not, but if you honestly don't believe I can script because I didn't notice he forgot an equal sign, feel free to try out my BrickGun testing. |
|
|
| Report Abuse |
|
|