Any assistance or a a link to a helpful source is appreciated, thanks!
Try this out:
I'm not sure if by "instantly moved to lighting" means local side or server side, or ,if it's when the player joins or when an event happens, but you'd just need to do something like this:
blur = Instance.New("BlurrEffect") blur.Parent = game.Lighting
Hope this helps :)
local blur = Instance.new("BlurrEffect", game.Lighting) wait(1) blur:Destroy() --destroys the blurr after u wait 1 second