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

Health Gui Remover?

Asked by
korj5 0
9 years ago
while true do

for inx, val in pairs(game.Players:GetPlayers()) do 
if val:FindFirstChild("PlayerGui") then 
if val.PlayerGui:FindFirstChild("HealthGUI") then 
val.PlayerGui.HealthGUI:Remove() 
end 
end 
end 

wait()
end

The Health Gui won't remove? There must be update.

1 answer

Log in to vote
0
Answered by
M39a9am3R 3210 Moderation Voter Community Moderator
9 years ago
game.StarterGui:SetCoreGuiEnabled("Health", false) --This will remove the health bar Gui by ROBLOX.

This script must be in a local script. Inside of StarterPack or StarterGui.

Ad

Answer this question