of     1   

blox6137
#141260708Wednesday, July 23, 2014 9:14 AM GMT

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 ~~
lampwnage121
#141260796Wednesday, July 23, 2014 9:17 AM GMT

Transparency is between 0-1 Your first loop is increasing by increments of one. Your second script has no waiting time.
blox6137
#141260844Wednesday, July 23, 2014 9:18 AM GMT

Yes, I realized the Transparency issue right when I pressed post. I changed it after, but it still didn't work. :/
blox6137
#141260898Wednesday, July 23, 2014 9:20 AM GMT

I've 'fixed' both scripts, but they still aren't fixed.
blox6137
#141260913Wednesday, July 23, 2014 9:20 AM GMT

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
Kodran
#141267477Wednesday, July 23, 2014 12:38 PM GMT

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

    of     1