MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
i wanna do scripting for people. plz hire me. dont underestimate meh.
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
i can do scripts. give meh a chance
|
|
|
|
How about a script that makes a player spas out completely when you press the "P" key?
(idek xD)
y-y-you too... |
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
shutup = game:GetService("ShutupService")
shutup:ShutupPlayer("AbovePerson")
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
i can make that. it will be great. ppl will be like "wtf is happening?!"
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
plz! i need something to do. i need to use my skill!
|
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
make the 4 horsemen kill all the children |
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
>_<
i was talking abut scripting! hire me!
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
gimme a task to do! i wanna test myself.
|
|
|
I'll give you something fairly basic.
Make two different loops run at once in the same script.
#Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217") |
|
|
@advance idk is this ritE?
coroutine.resume(coroutine.create(function()
while true do
print("LOOP1")
wait()
end
end))
coroutine.resume(coroutine.create(function()
while true do
print("LOOP2")
wait()
end
end)) |
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
the only way 2 loops will run at once is to fire an event
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
nvm. it does work. but i think thats an advanced way. because i never knew that.
|
|
|
Learn about coroutines :) |
|
LocardJoin Date: 2014-04-13 Post Count: 3516 |
Incorrect.
You can spawn 2 separate loops at almost exactly the same time if they are running on separate threads. You don't need an event. The coroutine example is also correct, btw. |
|
|
LocardJoin Date: 2014-04-13 Post Count: 3516 |
spawn is much better since it runs in the native language. :)
spawn(function()
while true do
wait()
print('hi')
end
end)
spawn(function()
while true do
wait()
print('hi again')
end
end) |
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
i just researched coroutine. it doesnt sound like a thing a lot of ppl know about. well thx. i just learned something new.
|
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
:O im learning more stuff!
|
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
"spawn is much better since it runs in the native language"
wat? coroutines are part of real Lua, spawn/delay is just roblox if that's what you were referring yo |
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
well, can i script for 1 of u guys then?
|
|
LocardJoin Date: 2014-04-13 Post Count: 3516 |
Sorry cntkillme, I heard that from one of you guys on the slack so I assumed it so :p |
|
MisBloxyJoin Date: 2008-09-13 Post Count: 164 |
pm me if u want me to script for u. ill do it for free if i have to. i wanna test my skills.
|
|