Roblox How To | Randomized Text (Death Screen)

preview_player
Показать описание
Roblox How To | Randomized Text (Death Screen)
How to make a death screen (watch first if you haven't already):

Music used (in order):
Elektronomia - Sky High [NCS Release]

Chapters:
0:00 Intro
0:27 Creating a table for the messages
1:09 Randomizing the text
2:20 Showcase
3:04 Outro
Рекомендации по теме
Комментарии
Автор

TYY! ITS WORK I LOVE UR VIDEOS !
The scirpt --//Variables
local deathscreen = script.Parent.Frame --Variable for the Frame
local player = game.Players.LocalPlayer --Variable for the Player
local character = player.Character --Variable for the Player's character

--When the character dies
deathscreen.Visible = true --Make the deathscreen visible
task.wait(5) --Wait 5 seconds
deathscreen.Visible = false --Make the deathscreen invisible
end)

elsmrd
Автор

local deathscreen = script.Parent --Variable for the Frame
local player = game.Players.LocalPlayer --Variable for the Player
local character = player.Character --Variable for the Player's character

local messages = {
"Your Text here",
"Your Text here",
"Your Text here",
"Your Text here",

}

--When the character dies
= ""..messages[math.random(1, #messages)]
deathscreen.Visible = true --Make the deathscreen visible
task.wait(5) --Wait 5 seconds
deathscreen.Visible = false --Make the deathscreen invisible
end)

bobgyelo
Автор

How can i make this but with the players name inside of it like: You got killed by "Playername"

Nevio
Автор

the first video only making the screen and not randomized text worked, but for me on this one, it doesn’t even show up. i’ve did the sam exact thing it’s just not working for some reason.

mamakochan
Автор

for some reason, the GUI doesnt fit the entire screen. it stops right about where the roblox settings are. am i dumb or am i missing something?

danSciple