Anyone know about this?

I wanted to know if there is an old Roblox preset that created a black bar on top of the screen and you could add text like a TextLabel.


imagem_2025-09-17_220350220

Does it still exists or do I have to recreate It?

2 Likes

its a Hint or Message instance i dont remember.
Its depracated and you should not use it
You can create it like:

local e = Instance.new("Hint")
e.Text = "hello"
e.Parent = workspace

Can also be parented to PlayerGui and in that case will display locally.

4 Likes

This is called the Hint! Sadly, it is only created through a script like: Instance.new("Hint",workspace)

1 Like

Like they said, it is a Hint instance. (the default name when created is message

You can also use a Message instance for a fullscreen display.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.