Number one post

Tuesday, June 19, 2012

Hints

Hints are messages that can be put at the top of your screen, and if you are an advanced scripter, you can use GUIs to show hints. below are two hint script versions.










Non-Repeating hint
local hint = Instance.new("hint")
Hint.Parent = game.workspace
Hint.Text = ("text") --replace text with what you want to appear as text
wait(10)--how long you want it to appear
Hint.Text = ("text")
wait(10)
Hint.Text = ("text")
wait(10)
end


Repeating hint
local hint = Instance.new("hint")
Hint.Parent = game.workspace
While True Do
Hint.Text = ("text")
wait(10)
Hint.Text = ("text")
wait(10)
Hint.Text = ("text")
wait(10)
end

No comments:

Post a Comment