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
11 years ago
01while true do
02 
03for inx, val in pairs(game.Players:GetPlayers()) do
04if val:FindFirstChild("PlayerGui") then
05if val.PlayerGui:FindFirstChild("HealthGUI") then
06val.PlayerGui.HealthGUI:Remove()
07end
08end
09end
10 
11wait()
12end

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
11 years ago
1game.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