Im having problems with Line 11
It works when I do a run on studio but on a regular server it doesnt show the GUI
hp = 50 script.Parent.BillboardGui.Frame.TIMESUP.Text = tostring(hp) function onTouched(hit) if hit.Name == 'RED_Bomb' then hp = hp - 1 script.Parent.BillboardGui.Frame.TIMESUP.Text = tostring(hp) script.Parent.Explode:Play() if hp == 0 then game.StarterGui.ScreenGui.Frame.Visible = true -- Not working? script.Parent.Script.Disabled = false end end end script.Parent.Touched:connect(onTouched)
game.StarterGui.ScreenGui.Frame.Visible = true script.Parent.Script.Disabled = false
once the game is played PlayerGui cannot be updated from StarterGui and you would need to get all the players
for i,Players in pairs(game.Players:GetChildren()) do Players.PlayerGui.ScreenGui.Frame.Visible = true end