Fixed sups not showing when set to visible

This commit is contained in:
Cooldude2606
2020-08-17 15:20:08 +01:00
parent 5ad4301f67
commit f98599ca82

View File

@@ -33,7 +33,7 @@ Gui.element{
UsesServerUps:on_load(function(player_name, visible)
local player = game.players[player_name]
local label = player.gui.screen[server_ups.name]
if not global.ext or not global.ext.server_ups then visible = false end
if not External.valid() or not global.ext.var.server_ups then visible = false end
label.visible = visible
end)