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
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
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