i tried to make a hint and i failed so this is what i did please help me
1 | game.workspace.hint |
2 |
3 | display = (welcome to funville a game by XxNitra 100 xX i hope you have fun) |
4 | wait( 5 ) |
5 | display = (please give me robux please i need robuxs) |
6 |
7 | end |
8 | end |
Did you even try?
Anyways, here is the script. It is way off the script you're supposed to do:
1 | while true do |
2 | local h = Instance.new( "Hint" ) |
3 | h.Parent = game.Workspace |
4 | h.Text = "Welcome to FunVille, a game by XxNitra100xX, I hope you have fun!" |
5 | wait( 5 ) |
6 | h.Text = "Please give me Robux please I need Robux!" |
7 | wait( 5 ) |
8 | end |
Please try next time XxNitra100xX
01 | local Hint = Instance.new( "Hint" ) |
02 | function Display(txt) |
03 | Hint.Parent = game.Workspace |
04 | Hint.Text = txt |
05 | end |
06 | while true do |
07 | Display( "Welcome to FunVille, a game by XxNitra100xX, I hope you have fun!" ) |
08 | wait( 5 ) |
09 | Display( "Please give me Robux please I need Robux!" ) |
10 | wait( 5 ) |
11 | end |