|
| 17 Jul 2012 05:05 PM |
--I need a function
LOL = game.Workspace.brick1
if LOL.Transpareny = 0 then LOL.Transparency = 0.4 wait(1) LOL.Reflectance = 0.4 wait(10) LOL.Material = grass wait(20) LOL.Transparency =0 wait(5) LOL.Reflectance = 0 wait(3) LOL.Material = Plastic
|
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 05:17 PM |
LOL = game.Workspace.brick1
if LOL.Transpareny = 0 then LOL.Transparency = 0.4 wait(1) LOL.Reflectance = 0.4 wait(10) LOL.Material = grass wait(20) LOL.Transparency =0 wait(5) LOL.Reflectance = 0 wait(3) LOL.Material = Plastic
Forget your 'end'?.......... I cant beleve people can forget that, and post the script not even noticing. |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 05:36 PM |
| I didnt forget that,I just didnt include it.Anyway does it work? |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 05:43 PM |
| Wow.. Why dident you TRY.. Man, why are people so lazy these days. |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 05:58 PM |
call my cat lazy...:D and illl test my script now if it works I just wanna learn scripting.... Ill see if it fails and it needs function.. |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 05:59 PM |
@158 - Before criticizing other people for laziness, check your own code.
LOL = game.Workspace.brick1
if LOL.Transpareny == 0 then LOL.Transparency = 0.4 wait(1) LOL.Reflectance = 0.4 wait(10) LOL.Material = "Grass" wait(20) LOL.Transparency =0 wait(5) LOL.Reflectance = 0 wait(3) LOL.Material = "Plastic" end |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:08 PM |
DOES IT STILL NEED A FUNCTION OR ON CLICKED THINGY? I dont know that |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:10 PM |
| @Penguin - That depends, when do you want this to happen? When you touch it? Every 10 seconds? |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:12 PM |
| I think it needs a function.Illcheck if I can make it |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:13 PM |
| ...Kay then. Don't answer my question. |
|
|
| Report Abuse |
|
|
| |
|
|
| 17 Jul 2012 06:20 PM |
| broken....ugh....who will help.... |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:26 PM |
| Okay, I don't know if you're trolling or not anymore. Answer my question. |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:31 PM |
| im not and you in a scripting group so..do you know if you can fix it?I added the function! |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:32 PM |
| ..Penguin, why don't you answer his question? That could help a bit? |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:32 PM |
If you want me to help, answer the question that will ALLOW me to help you.
"When do you want this to happen?" |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:33 PM |
And you know your the teache in the group I just joined..PM A TEACHER YOU. SO YOU HELP MAYBE...... |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:34 PM |
| He's either trolling or has serious problems. I'm out of this thread. |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 06:34 PM |
@dark - Agreed.
@Penguin - I'm TRYING to help, but you are ignoring my question. WHEN DO YOU WANT THIS TO HAPPEN? |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 08:07 PM |
| I want it to happen when you click it |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2012 08:14 PM |
Okay. Use this:
local LOL = game.Workspace.brick1 local cd = Instance.new("ClickDetector", LOL) cd.MouseClick:connect(function() if LOL.Transpareny == 0 then LOL.Transparency = 0.4 wait(1) LOL.Reflectance = 0.4 wait(10) LOL.Material = "Grass" wait(20) LOL.Transparency =0 wait(5) LOL.Reflectance = 0 wait(3) LOL.Material = "Plastic" end end) |
|
|
| Report Abuse |
|
|