of     1   

flosty
#220693568Friday, July 07, 2017 1:23 PM GMT

Hey, I'm an amateur scripter and I've scripted a flashing light script that looks like this: game.Workspace.Skyscraper Light.Transparency = 1 Wait(1) game.Workspace.Skyscraper Light.Transparency = 0 How can I repeat this script?
HexagonCode
#220693989Friday, July 07, 2017 1:34 PM GMT

while wait(1) do game.Workspace.Skyscraper Light.Transparency = 1 Wait(1) game.Workspace.Skyscraper Light.Transparency = 0 end
flosty
#220694510Friday, July 07, 2017 1:46 PM GMT

Alright, it worked. Thanks for the help.

    of     1