Well, I've attempted many times. I can get it temporary, I can get hints to go temporary But I want to make my screen message STAY on the players screen I was thinking maybe Wait() But that won't work... Any ideas?
If you mean an actual Message object, just don't remove it.
local message = Instance.new("Message") message.Text = "Hello!" message.Parent = game.Workspace --And don't remove it here!
How do you mean?
You could do this with a GUI, and use TweenPosition.
That would look like the following:
StarterGui
- ScreenGui - Frame Resize/position the Frame to look similar to a hint - TextLabel Change the size to: {1,0}{1,0} Change the position to: {1,0}{0,0} - Script Source:
script.Parent:TweenPosition(UDim2.new(0,0,0,0))
@Scel What I did, thanks :)
Locked by TheMyrco
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?