Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make certain words pop up on screen at a certain time?

Asked by 10 years ago

Please include the code which you are trying to use, so the community will be better-equipped to help you with your problem.

I know this is probably one of the most easiest questions, but I'm VERY NEW to scripting and I know what type of game I'm going to make but I really need to learn how to do this to start it off. Thank you so much! :) Sorry I don't know what some of the tags mean, but I did my best.

5 answers

Log in to vote
1
Answered by 10 years ago

Create a message or hint, wait a few seconds, and then remove it. See this page: http://wiki.roblox.com/index.php?title=How_to_Utilize_ROBLOX_Messages

Ad
Log in to vote
0
Answered by 10 years ago

you can do this by inserting an admin command script.

Log in to vote
0
Answered by
Uroxus 350 Moderation Voter
10 years ago

Not quite sure what you mean by this, And im new to scripting aswell but I have an idea of what is needed for it to work im just not entirely sure how to script it. But...

You'll need a timer, a set of words and the print function..

0
Sorry for asking this again, but how do I set up a timer for when the words pop up on the screen? ElementEagle7 0 — 10y
Log in to vote
0
Answered by 10 years ago
m=Instance.new("Message")--Change to hint if you want the banner at the top of the screen.
m.Parent=game.Workspace
m.Text="What ever text you want"
wait(3)--How long you want it too appear
m:Destroy()

Then you can use an event to determine when it pops up.

Log in to vote
0
Answered by
Eman08 10
10 years ago

hi idk

Answer this question