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 9 years ago

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

game.workspace.hint

    display=(welcome to funville a game by XxNitra100xX i hope you have fun)
        wait(5)
    display=(please give me robux please i need robuxs)

            end
                end
0
Please use capitals and correct grammar when you post questions. ChipioIndustries 454 — 9y

2 answers

Log in to vote
1
Answered by 9 years ago

Did you even try?

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

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

Please try next time XxNitra100xX

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

Answer this question