Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I remove the red death flash?

Asked by 2 years ago

I want to remove the red flash when you take more than 5 damage but when i use this script it doesnt work:

game.StarterGui:SetCoreGuiEnabled("Health", false)

1 answer

Log in to vote
0
Answered by 2 years ago

Hey! It's me again lol, answering yet another one of your questions

So, that script DOES work, If it isn't working for you, then make sure that:

· That script is being executed from a LocalScript · The LocalScript is located inside game.StarterGui

And if you wanna upgrade your script a little bit you can maybe do it like this

repeat
    wait()
until game.Players.LocalPlayer

wait(0.001)

game:GetService("StarterGui"):SetCoreGuiEnabled("Health", false)
1
Thank you it wasnt in startergui PeterParker17386 16 — 2y
Ad

Answer this question