Death Screen Inspired by Jailbreak

I’m trying to make a death screen like jailbreak, when you die a random text appears, a death message, but i don’t remember how to do it, can someone tell me?

yeah you can do something like this

deathmesseges = {"youre deid", "random"}
plr.CharacterAdded:Connect(function()
  plr.Character:WaitForChild("Humanoid").Died:Connect(function()
  Gui.text = deathmesseges[math.random(1, #deathmesseges)]
  Gui.Visible = true
 end)
end)
1 Like