of     1   

Jblaze1
#36310597Sunday, October 31, 2010 8:29 PM GMT

im a new scripter and i was woundering how to make a brick transparency = 1 and cancollide = false at the same time and then swich to transparency = 0 and cancollide = true. i know it would invole while true do.can somebody please tell me how to do this?
4camera
#36310919Sunday, October 31, 2010 8:33 PM GMT

It's not that hard, and you don't need a 'while true do' loop unless you want it to repeat in a never-ending cycle of monotonous change. a = game.Workspace.Part a.Transparency = 1 a.CanCollide = false wait(5) a.Transparency = 0 a.CanCollide = true Since you are new I will redirect you here: http://wiki.roblox.com/index.php/Part
Jblaze1
#36311132Sunday, October 31, 2010 8:37 PM GMT

actually.....i want it to go on and on forever. lul
myrco919
#36311251Sunday, October 31, 2010 8:38 PM GMT

[ Content Deleted ]
Jblaze1
#36318018Sunday, October 31, 2010 10:34 PM GMT

k thanx

    of     1