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

how to make a hint please?

Asked by 10 years ago

i tried to make a hint and i failed so this is what i did please help me

1game.workspace.hint
2 
3    display=(welcome to funville a game by XxNitra100xX i hope you have fun)
4        wait(5)
5    display=(please give me robux please i need robuxs)
6 
7            end
8                end
0
Please use capitals and correct grammar when you post questions. ChipioIndustries 454 — 10y

2 answers

Log in to vote
1
Answered by 10 years ago

Did you even try?

Anyways, here is the script. It is way off the script you're supposed to do:

1while true do
2local h = Instance.new("Hint")
3h.Parent = game.Workspace
4h.Text = "Welcome to FunVille, a game by XxNitra100xX, I hope you have fun!"
5    wait(5)
6h.Text = "Please give me Robux please I need Robux!"
7    wait(5)
8            end

Please try next time XxNitra100xX

0
how do you accept an answer XxNitra100xX 0 — 10y
0
There should be an 'accept answer' under the Report to Staff button.. JustGimmeDaBux 18 — 10y
0
nope XxNitra100xX 0 — 10y
0
oh there tyvm just XxNitra100xX 0 — 10y
0
You are welcome. JustGimmeDaBux 18 — 10y
Ad
Log in to vote
1
Answered by 10 years ago
01local Hint = Instance.new("Hint")
02function Display(txt)
03Hint.Parent = game.Workspace
04Hint.Text = txt
05end
06while true do
07Display("Welcome to FunVille, a game by XxNitra100xX, I hope you have fun!")
08wait(5)
09Display("Please give me Robux please I need Robux!")
10wait(5)
11end

Answer this question