p_pof
(p_pof)
#1
I’m wondering if there was a preset of that one announcement thing? It was like a .5 transparent white background white white text and black outline.
like this.
Am I still able to do this, or do I have to recreate it. Not saying it’s not hard to recreate, but I’d rather have the original
8 Likes
p_pof
(p_pof)
#2
Also the black bar on the top with text? if anyone remembers that
2 Likes
Dede_4242
(Dede_4242)
#3
What is taht one announcement thing? Sorry I’m new to Roblox and if you are talking about something old I don’t know it
Do you mean a Message?
Instance.new("Message", workspace).Text = "Text here plz"
The black bar thing is called a Hint and it’s linked in this create.roblox.com page as well
8 Likes
p_pof
(p_pof)
#5
Yesss bro thank you I need that, also do you know how to do the one where there is a black bar on top, and it has text there?
p_pof
(p_pof)
#6
oh i didnt see what you said on the bottom mb
DasKairo
(Cairo)
#7
Same thing as Message
.
local Hint = Instance.new("Hint", workspace)
Hint.Text = "Hi"
Just to remind you, Both Message
and Hint
have the same name when created
3 Likes
Refrain from using deprecated objects. Although they are easier to use, they can break at any time.
4 Likes
majdTRM
(majdTRM)
#9
As SubtotalAnt8158 has said, you should refrain from using deprecated objects such as Message or Hint.
For an exact replica of the effect, you can use the following:
Hint and Message emulated.rbxm (3.4 KB)
Message
Create a TextLabel
-
Set Size to {1,0},{1,0}
-
Position to {0.5,0},{0.5,0}
-
Anchor point to 0.5, 0.5
-
Set background color to [128, 128, 128]
-
Set BackgroundTransparency to 0.5
-
Set BorderSizePixel to 0
-
Set FontFace to Arial
-
Set TextSize to 21
-
Set TextStrokeTransparency to 0
Hint
-
Set Size to {1,0},{0,20}
-
Position to {0,0},{0,0}
-
Set background color to [0, 0, 0]
-
Set BorderSizePixel to 0
-
Set FontFace to Arial
-
Set TextSize to 21
-
Set TextStrokeTransparency to 0
@p_pof
6 Likes
system
(system)
Closed
#10
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.