Original script:
all time is in seconds, if you need anything then send me a PM!]]--
local Min = 6 -- Flicker intensity (The lower the number, the darker the minimum)
local Max = 18 -- Flicker intensity (The higher the number, the brighter the maximum)
local TMin = 1 -- Minimum time between flashes (In Seconds)
local TMax = 5 -- Maximum time between flashes (In Seconds)
local Normal = 25 -- Range of the light when it's not flickering
local W = 0.1 -- The amount of time between flashes, in the flash sequence
------------------------------------SCRIPT--------------------------------------------------
local L = script.Parent -- What "Light" means
print ("Flicker Script Loaded")
while true do -- Da Loop
wait (math.random(TMin, TMax)) -- Wait a random amount of time between the Min and Max. Changeable (Min, Max)
print ("Running")
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = math.random(Min, Max)
wait (W)
L.Range = Normal
end
-- Made by AlgyLacey```
** You are now Level 2! **