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.
Does it still exists or do I have to recreate It?
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.
Does it still exists or do I have to recreate It?
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.
This is called the Hint! Sadly, it is only created through a script like: Instance.new("Hint",workspace)
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.