of     2   
chevron_rightchevron_rightchevron_right

Robertoguy
#7059418Friday, April 03, 2009 11:40 PM GMT

PM me, and we will discuss me teaching you in my place. Note: You can not enter my place without me there, so don't even try.
Robertoguy
#7060319Friday, April 03, 2009 11:58 PM GMT

I guess no one wants to learn how to script... So ROBLOX has changed since I was last on, everyone is good at scripting now. Hmph... >.>
kisamebeast
#7060436Saturday, April 04, 2009 12:00 AM GMT

Not true lol. I would like to attend, but I have very pressing issues at the moment ;)
scipiothegreat
#7060693Saturday, April 04, 2009 12:06 AM GMT

What would be the problem with them joining without you there?
Diin
#7060887Saturday, April 04, 2009 12:11 AM GMT

He probably has a "if player == nil then" kick script.
Robertoguy
#7060918Saturday, April 04, 2009 12:11 AM GMT

I want to have complete control over who enters and who can't enter. You just simply wouldn't be able to enter. My script only allows teachers to enter, and then the teachers can let certain people in.
Robertoguy
#7063149Saturday, April 04, 2009 12:59 AM GMT

C'mon, someone has to want to learn....
Robertoguy
#7064968Saturday, April 04, 2009 1:37 AM GMT

SOMEONE!!!
DingDong272
Top 100 Poster
#7065118Saturday, April 04, 2009 1:40 AM GMT

I actually don't believe "classes" are the best way to learn. I always liked read-able tutorials the best. But, I've never seen you teach so you could prove me wrong.
Clone512
#7065618Saturday, April 04, 2009 1:50 AM GMT

I like reading the best, most of the times. I sometimes like videos if you can actually see what they're doing (alot of videos have horrible quality not to mention sound).
Robertoguy
#7065738Saturday, April 04, 2009 1:52 AM GMT

*doesn't stare either of you in the eye* >.>
DingDong272
Top 100 Poster
#7066070Saturday, April 04, 2009 1:58 AM GMT

I have no proof to back me up I'm going on, I'm simply going on my opinion. Completely ignore me if you want to.
Clone512
#7067134Saturday, April 04, 2009 2:19 AM GMT

It all seems like a scam to get place visits, I'm not saying you are scamming. I'm just saying that in general with scripting schools--and though not titled as such, it does certainly seem like it.
Teamjunior007
#7067772Saturday, April 04, 2009 2:33 AM GMT

hey robert i would like to learn, tell me when we meat
Teamjunior007
#7067805Saturday, April 04, 2009 2:33 AM GMT

this isnt my main, my main is teamjunior
Zukunft
#7070541Saturday, April 04, 2009 3:36 AM GMT

Since I am.. partially wealthy here on ROBLOX, I will have my boss pay for scripting lessons, privately. 750 tix to learn to make a hopperbin.
Robertoguy
#7071054Saturday, April 04, 2009 3:52 AM GMT

PM me what you would like to learn, and when. The lessons are free. Lastly, if I wanted place visits, why would I make my place so only the teachers can enter and then allow certain people to enter after that? It is a script that removes you from my place when you enter unless you are allowed to enter. I made the script for it in my free models if you would like to take a look at what I mean.
Teamjunior
#7555531Thursday, April 16, 2009 6:59 AM GMT

hey i want a lesson plz
Robertoguy
#7557925Thursday, April 16, 2009 11:26 AM GMT

This thread came back from the dead... Lessons will be learned on your own now, and at my website, you can learn from my tutorials, or go to the links page to visit oher sites like mine to try learning from them. I suggest you learn from mine, because I exaplin everything the way it is supposed to be understood, but if you want to take a chance of learning the wrong way, then you can go to someone else's site. The site that was made by robloxscripter, 140, and clone, I am sure you can trust to a better degree than the others. Their site is first in the list. My site is: www.eughq.com :-F
silverthehedgehog
#7559220Thursday, April 16, 2009 12:42 PM GMT

I always needed to script,if it works,i will highly thank you
Robertoguy
#7560003Thursday, April 16, 2009 1:18 PM GMT

Uh, did it help? It says you are offline now, so you must have looked at it, and you will see this post when you log back on.
zac352
#7562324Thursday, April 16, 2009 2:59 PM GMT

[ Content Deleted ]
Robertoguy
#7566417Thursday, April 16, 2009 6:02 PM GMT

Clearly... for variable=starting-number,ending-number do --it adds 1 to the starting number till the starting number equals the ending number end
Clone512
#7566904Thursday, April 16, 2009 6:27 PM GMT

Actually there is a third argument for the for loop Robertoguy, it's just optional and by default, is set to one. e.g. for variable=startingnumber, endingnumber, increment/decrement-factor do end another example: num = 0 for x = 1, 10, 0.1 do num = num + 1 end print(num) --> 100 Or, you can do it negative: num = 0 for x = 10, -10, -1 do num = num + 1 end print(num) -->20 num = 0 for x = 10, 1 do num = num + 1 end print(num) The above snippet would crash the game because x is incrementing by one and its already ten so it'll never become one, therefore its an infinite loop.
Robertoguy
#7567269Thursday, April 16, 2009 6:43 PM GMT

Yeah, but I didn't want to confuse him with that part... I doubt he would ever need to use it, so I showed him the way that is easiest. num=0 for i=10,1,-1 do--Subtracts 1 from the variable until it equals 1: num=i end print(num) num=0 for i=1,10,3 do--adds 3 to the variable till it equals 10 num=i end print(num) num=0 for i=1,10,2 do--adds 2 to the variable till it is equal to 10, or adding another 2 would make it go over. num=i end print(num) num=0 for i=10,1 do--will not function because 10+ will never equal 1 num=i end print(num)

    of     2   
chevron_rightchevron_rightchevron_right