|
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. |
|
|
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... >.> |
|
|
Not true lol.
I would like to attend, but I have very pressing issues at the moment ;) |
|
|
What would be the problem with them joining without you there? |
|
DiinJoin Date: 2007-10-20 Post Count: 534 |
He probably has a "if player == nil then" kick script. |
|
|
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. |
|
|
C'mon, someone has to want to learn.... |
|
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
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. |
|
Clone512Join Date: 2008-03-02 Post Count: 7810 |
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). |
|
|
*doesn't stare either of you in the eye* >.> |
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
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. |
|
Clone512Join Date: 2008-03-02 Post Count: 7810 |
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. |
|
|
hey robert i would like to learn, tell me when we meat |
|
|
this isnt my main, my main is teamjunior |
|
ZukunftJoin Date: 2009-03-25 Post Count: 65 |
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. |
|
|
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. |
|
|
|
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 |
|
|
I always needed to script,if it works,i will highly thank you |
|
|
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. |
|
zac352Join Date: 2009-02-20 Post Count: 4657 |
[ Content Deleted ] |
|
|
Clearly...
for variable=starting-number,ending-number do
--it adds 1 to the starting number till the starting number equals the ending number
end |
|
Clone512Join Date: 2008-03-02 Post Count: 7810 |
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. |
|
|
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) |
|