of     1   

Helenius
#182952593Wednesday, February 03, 2016 11:07 PM GMT

Are they hard to make, or is there any possible way I can find one somewhere? Basically, just a flickering light. C'est la vie.
KLGA
#182952818Wednesday, February 03, 2016 11:11 PM GMT

Insert Pointlight into your part in workspace local Pointlight = workspace.Part.Pointlight while Pointlight ~= nil do wait(math.random(1,10)/10) Pointlight.Enabled = false wait(math.random(1,10)/10) Pointlight.Enabled = true end Change around the numbers in the wait if you need your flickering faster or shorter.
Roblok1
#182952855Wednesday, February 03, 2016 11:12 PM GMT

here: light = script.Parent waitTime = 2 while wait(waitTime) do light.Enabled = false wait(waitTime) light.Enabled = true end
Helenius
#182952913Wednesday, February 03, 2016 11:13 PM GMT

Thanks guys! C'est la vie.

    of     1