of     1   

Nave67
#15988840Thursday, October 29, 2009 1:04 AM GMT

Sorry im new to scripting and I need a script where you walk to a certain place and a message appears at the bottom. ( Understand?)... Like if their is a dark cave that you walk into a message appears saying whoa its dark or something like that....
sirerik
#15989593Thursday, October 29, 2009 1:19 AM GMT

oh i know what you mean do you what me to make you a modle of it for you
saltytaco1234
#15990115Thursday, October 29, 2009 1:29 AM GMT

lol, it's pie.
Nave67
#15990910Thursday, October 29, 2009 1:45 AM GMT

.... pie...
Nave67
#15990935Thursday, October 29, 2009 1:45 AM GMT

And sure if you could make one. That would be great.
Angerypanda
#15992467Thursday, October 29, 2009 2:20 AM GMT

You mean a hint?
Nave67
#16012025Thursday, October 29, 2009 9:00 PM GMT

ya i guess.. Wataever it is that you walk somewhere and a message appears at the bottom..
Camoy
#16012318Thursday, October 29, 2009 9:07 PM GMT

msg = Instance.new("Hint") function onTouched(hit) msg.Text = "Who, it's dark" msg.Parent = hit.Parent end script.Parent.Touched:connect(onTouched)
Zkiller11
#16013950Thursday, October 29, 2009 9:40 PM GMT

lol, you said "who, it's dark" did you mean "woah, it's dark"?
Stiki500
#16014240Thursday, October 29, 2009 9:46 PM GMT

First, insert a brick into the place and put it at the entrance of the cave. Make it invisible and CanCollide = false Make a script, put it in the brick, and put this in the source --Code script.Parent.Touched:connect(function (hit) plr = game.Players:GetPlayerFromCharacter(hit) if plr.CaveMsg ~= nil then plr.CaveMsg:Remove() else m = Instance.new("Message") m.Parent = plr m.Name = "CaveMsg" m.Text = "Whoa, it's dark!" end end) --End of code
saltytaco1234
#16014291Thursday, October 29, 2009 9:47 PM GMT

script.Parent.Touched:connect(function (hit) plr = game.Players:GetPlayerFromCharacter(hit.Parent.Name) if plr.CaveMsg ~= nil then plr.CaveMsg:Remove() else m = Instance.new("Message") m.Parent = plr m.Name = "CaveMsg" m.Text = "Whoa, it's dark!" end end) If you put hit, that's the leg which is a nil value.
Nave67
#16015281Thursday, October 29, 2009 10:12 PM GMT

Thanks everyone

    of     1