centero
|
  |
| Joined: 17 Apr 2012 |
| Total Posts: 35 |
|
|
| 31 Dec 2013 04:24 AM |
I'm planning to make a minigame like going into a box and teleport sorta like a morph But, I'm afraid that some afk people might just stand there and make people wait for the round to be over Can someone help me make one? I want to be regenable like after 10 secs disappear it will reappear after 2 secs |
|
|
| Report Abuse |
|
|
| |
|
|
| 31 Dec 2013 05:06 AM |
| Be more descriptive. Cut out all the "likes" |
|
|
| Report Abuse |
|
|
TheMinid
|
  |
| Joined: 20 Jun 2012 |
| Total Posts: 128 |
|
|
| 31 Dec 2013 05:47 AM |
Try this:
while true do x = script.Parent
x.Transparency = 0 x.CanCollide = true wait(3)
x.Transparency = 1 x.CanCollide = false wait(10) end |
|
|
| Report Abuse |
|
|
TheMinid
|
  |
| Joined: 20 Jun 2012 |
| Total Posts: 128 |
|
| |
|
centero
|
  |
| Joined: 17 Apr 2012 |
| Total Posts: 35 |
|
| |
|
centero
|
  |
| Joined: 17 Apr 2012 |
| Total Posts: 35 |
|
|
| 31 Dec 2013 06:09 AM |
Yes, like that But, I want it to be reversed |
|
|
| Report Abuse |
|
|
centero
|
  |
| Joined: 17 Apr 2012 |
| Total Posts: 35 |
|
|
| 31 Dec 2013 06:13 AM |
Oh it's okay I figured it out I reversed the Transparency and the CanColide thanks!
|
|
|
| Report Abuse |
|
|
TheMinid
|
  |
| Joined: 20 Jun 2012 |
| Total Posts: 128 |
|
| |
|