blox6137
|
  |
| Joined: 23 Nov 2008 |
| Total Posts: 1109 |
|
|
| 23 Jul 2014 04:14 AM |
How would one do this? I've tried doing:
~~
while wait(.1) do part.Transparency = part.Transparency + 1 end
~~
for t = 0,1,.1 do part.Transparency = t end
~~ |
|
|
| Report Abuse |
|
|
|
| 23 Jul 2014 04:17 AM |
Transparency is between 0-1 Your first loop is increasing by increments of one. Your second script has no waiting time. |
|
|
| Report Abuse |
|
|
blox6137
|
  |
| Joined: 23 Nov 2008 |
| Total Posts: 1109 |
|
|
| 23 Jul 2014 04:18 AM |
| Yes, I realized the Transparency issue right when I pressed post. I changed it after, but it still didn't work. :/ |
|
|
| Report Abuse |
|
|
blox6137
|
  |
| Joined: 23 Nov 2008 |
| Total Posts: 1109 |
|
|
| 23 Jul 2014 04:20 AM |
| I've 'fixed' both scripts, but they still aren't fixed. |
|
|
| Report Abuse |
|
|
blox6137
|
  |
| Joined: 23 Nov 2008 |
| Total Posts: 1109 |
|
|
| 23 Jul 2014 04:20 AM |
local part = script.Parent part.Transparency = 0 part.CanCollide = false
while wait(.001) do part.CFrame = part.CFrame * CFrame.Angles(0, math.rad(0) + .01, 0) end
--this is where I would put the transparency changy part |
|
|
| Report Abuse |
|
|
Kodran
|
  |
| Joined: 15 Aug 2013 |
| Total Posts: 5330 |
|
|
| 23 Jul 2014 07:38 AM |
while wait() do for i = 1, 10 do part.Transparency = part.Transparency + 0.1 end for i = 1, 10 do part.Transparency = part.Transparency - 0.1 end end |
|
|
| Report Abuse |
|
|