snazzell
|
  |
| Joined: 13 Sep 2008 |
| Total Posts: 5693 |
|
|
| 05 Aug 2011 07:32 PM |
Practicing for three years + Scripting = No success.
D: |
|
|
| Report Abuse |
|
|
Spectrumw
|
  |
| Joined: 04 Aug 2009 |
| Total Posts: 13510 |
|
| |
|
|
| 05 Aug 2011 07:33 PM |
Took me 2 hours to learn the basics.
[Insert squiggles here][Say something humorous here][More squiggles go here] |
|
|
| Report Abuse |
|
|
snazzell
|
  |
| Joined: 13 Sep 2008 |
| Total Posts: 5693 |
|
|
| 05 Aug 2011 07:33 PM |
| I don't get, I just don't get it.... |
|
|
| Report Abuse |
|
|
|
| 05 Aug 2011 07:34 PM |
took me like 4-6 months to basically master it :l
-Like a boss. |
|
|
| Report Abuse |
|
|
Spectrumw
|
  |
| Joined: 04 Aug 2009 |
| Total Posts: 13510 |
|
| |
|
|
| 05 Aug 2011 07:37 PM |
Scanned though beginners tutorial, Payed almost no attention.
But enough to learn :o |
|
|
| Report Abuse |
|
|
snazzell
|
  |
| Joined: 13 Sep 2008 |
| Total Posts: 5693 |
|
| |
|
|
| 05 Aug 2011 08:02 PM |
It's not as hard as you think it is. Go through a simple free-model script, I.E. a VIP door.
Basic example (from head): local admins = {"ServerLabs", "snazzell"} function onTouch(hit) if hit ~= nil then if hit.className == "Part" then if hit.Parent ~= nil then for i=1, #admins do if admins[i]:lower() == hit.Parent.Name:lower() then script.Parent.CanCollide = false script.Parent.Transparency = 0.2 wait(2) script.Parent.CanCollide = true script.Parent.Transparency = 0 end end end end end end script.Parent.Touched:connect(onTouch)
Take apart that script, and then P.M. me what every single line does, or reply to this thread. Don't say it takes too long either, you spent 3 years trying to learn with no success. Now, good luck. I'll reply again when you post. |
|
|
| Report Abuse |
|
|
robotmega
|
  |
| Joined: 16 May 2009 |
| Total Posts: 14084 |
|
| |
|