Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 08:51 AM |
| May need some helo...anyone up for helping? |
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 08:58 AM |
| I know of 1 person who might help me...lefik |
|
|
| Report Abuse |
|
|
velibor
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 1003 |
|
|
| 20 Apr 2012 09:00 AM |
I wish you the best of luck.
If you have broken code post it here and we will help you. If you need a Object or Method then look it up at the Roblox Wiki Still need help ? Then PM me and I will answer the Questions that you ask.
Veli
|
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 09:03 AM |
Thanks for the support and I am reading the wiki now wait () end |
|
|
| Report Abuse |
|
|
iPremiumZ
|
  |
| Joined: 23 Jan 2012 |
| Total Posts: 6834 |
|
|
| 20 Apr 2012 09:05 AM |
| Dingdong227 -- I believe that's his name has good tutorials. |
|
|
| Report Abuse |
|
|
velibor
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 1003 |
|
|
| 20 Apr 2012 09:17 AM |
MyTable = {"I'', "Wish", "You", "The", ""Best"}
for i = 1,#MyTable do print(MyTable[i]) end
|
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 09:27 AM |
print.Message("Is this right?")
end |
|
|
| Report Abuse |
|
|
iPremiumZ
|
  |
| Joined: 23 Jan 2012 |
| Total Posts: 6834 |
|
|
| 20 Apr 2012 09:27 AM |
Remove the .Message and the end
print("Is this right") |
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 09:35 AM |
Thanks. The reason I am learning scripting is to help me in a future career. |
|
|
| Report Abuse |
|
|
iPremiumZ
|
  |
| Joined: 23 Jan 2012 |
| Total Posts: 6834 |
|
| |
|
robocorp
|
  |
| Joined: 25 Apr 2010 |
| Total Posts: 804 |
|
|
| 20 Apr 2012 09:42 AM |
| You know what? Instead of following tutorials, I wandered off. I learned some functions and found uses to them, Scripting IS fun. Actually, it makes algebra a lot easier. Have fun making scripts to do pretty much anything! :D |
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 09:47 AM |
| @Roblo I can't do that sadly, as I need to learn in-depth scripting. |
|
|
| Report Abuse |
|
|
|
| 20 Apr 2012 09:58 AM |
| Well, that's good to know that someone else if learning to script, I use to script for ROBLOX, but then it got boring, so I wanted to learn real programming so, I did, and that got boring, and I learned and almost mastered 12 Programming/Scripting Languages in 1 year. Right now, I'm programming in HTML, I've learned that language 2-3 times now, and I just hope you can learn how to program fast like I did :) |
|
|
| Report Abuse |
|
|
robocorp
|
  |
| Joined: 25 Apr 2010 |
| Total Posts: 804 |
|
|
| 20 Apr 2012 10:01 AM |
@corey,
You don't need to learn in-depth scripting. I can get you to my level, than from there teach you how to expirement with scripts. If you want me to teach you, Just send me a PM. |
|
|
| Report Abuse |
|
|
|
| 20 Apr 2012 10:02 AM |
| Always add 'end' in the script x3 |
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 10:13 AM |
@Roblo you mean editing scripts? I can do that wait(20) while firegox lags end |
|
|
| Report Abuse |
|
|
|
| 20 Apr 2012 10:17 AM |
Only add "ends" in a script when you need to.
if, while, for, function... Anything that you see a minus on the left of it when you make a script in ROBLOX Studio. |
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
|
| 20 Apr 2012 11:58 AM |
print("Thankyou") if(6 + 7 = 13 ) wait(1) end Is that correct? |
|
|
| Report Abuse |
|
|
|
| 20 Apr 2012 12:07 PM |
print("Thankyou") if (6 + 7 == 13) then
--make sure you have 2 = signs when you have an "if statement." And add a "then" there. Also, you don't NEED brackets, you can use them if you want to. Or if you need to use BEDMAS/PEMDAS (However you say it)
wait(1) end
Now it's correct :) |
|
|
| Report Abuse |
|
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
| |
|
|
| 20 Apr 2012 12:09 PM |
We called it BIDMAS or BODMAS here... I called it PIDMAS for parenthesis.
That code looks an awful lot like javascript with the if statement. |
|
|
| Report Abuse |
|
|
Corey089
|
  |
| Joined: 27 Oct 2008 |
| Total Posts: 4370 |
|
| |
|
myr8
|
  |
| Joined: 10 Apr 2012 |
| Total Posts: 100 |
|
| |
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
| |
|
|
| 20 Apr 2012 12:20 PM |
'And why is it better to use () because you use them in C++, if this is Lua?'
I laughed. If they move on to C++, then they are ready. I have know Lua for years and I am only just moving on to C++. |
|
|
| Report Abuse |
|
|