|
| 24 Aug 2011 11:17 PM |
Is it possible to make print to were only 1 person can see it when they walk into a room but if another player walked into that room he/she would see it to??
if so would you mind telling me how??? |
|
|
| Report Abuse |
|
|
|
| 24 Aug 2011 11:21 PM |
mssg = "hi!" --Change above to what you want it to say. Put in quotes. ""
db = 0 script.Parent.Touched:connect(function(hit) if db == 0 then db = 1 if hit.Parent:FindFirstChild("Humanoid") then
local h = Instance.new("Hint") h.Parent = game.Workspace h.Text = mssg wait(10) h:Remove() db = 0 end end end)
Put this brick either in, or near the doorway of the room. |
|
|
| Report Abuse |
|
|
| |
|
|
| 24 Aug 2011 11:38 PM |
| needed same thing, what a coincidence.. thanks |
|
|
| Report Abuse |
|
|
|
| 24 Aug 2011 11:51 PM |
| i need it for a naruto remake Game XD lol |
|
|
| Report Abuse |
|
|
|
| 24 Aug 2011 11:57 PM |
| what if i put it in the door??? |
|
|
| Report Abuse |
|
|
|
| 24 Aug 2011 11:58 PM |
Yes, you can put it in the door... but make the door CanCollide = false,
--or add this to the script:--
script.Parent.CanCollide = false wait(2) script.Parent.CanCollide = true |
|
|
| Report Abuse |
|
|
| |
|