Script Repeats again and again

That’s why I wrote comment upper

@roboxegor any idea on how to fix the flickering???

Increasing time of waiting…

what makes his 0.08 wait different from mine?

Got it to work! I forgot to change the number of repeating…

Well, maybe formular mistake…

Oh it’s fine, they forgot to change the repeat variable

Well, sooooooo no bugs for now?

FOR now. Maybe if im going to make a fade-out thing

I highly recommend TweenService to make it smooth

But how will i do that? (aaaagainnn…)

First, create an effect of fade-out.
Than do this.

local TS = game:GetService("TweenService")

local blacksc = 'effect'   -- Put here your effect

local goal = {}
goal.Transparancy = 1   -- There you need to change some effect's property to end value

local animTime = 4      -- You can change this. It's time of animation
local style = Enum.EasingStyle.Cubic        -- It's anim's style
local dir = Enum.EasingDirection.In           -- It's anim's direction

local tweeninfo1 = TweenInfo.new(animTime, style, dir)

local tween1 = TS:Create(blacksc, tweeninfo1, goal)

tween1:Play()    -- Put this in the part where you need to play the animation.

But it’s theme for another topic.

Hmmm ok… I’ll try doing this later today or tomorrow

Can you just delete the GUI once the player dies? That’s what I did when I made a death effect script.

Tho, if you delete it the GUI maybe won’t come back whenever you delete it, also I already figured it out and if I make it that the GUI deletes whenever I die it can be deleted for multiple people, AND this isn’t a GUI it’s a blur effect and color correction, If you needed help with it ive already made a kit that you can use for color correction and blur if ya want → Archived cuz stuff

Ah, thanks @Exotic_Stuffing. That may prove to be quite handy.

No problem!

(random message so I can post…)

Good luck…

Thanks… But im currently working on other projects so i maybe wont be able to make it but i will try…