RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a new script so when player dies and then he spawns imagelabel = false"
-- server script game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character:WaitForChild("Humanoid").Died:Connect(function() local gui = player:WaitForChild("PlayerGui") local imageLabel = gui:WaitForChild("ImageLabel") imageLabel.Visible = false end) end) end)