|
| 05 Jun 2012 11:00 AM |
I want this script: script.Parent.Touched:connect(function(hit) if hit.Parent:findFirstChild("Humanoid") then local i = Instance.new("Message",game.Workspace) i.Text = hit.Parent.Torso.Position wait(2) i:Destroy() end end ---------- But I don't want everyone to see the message.
~Thanks |
|
|
| Report Abuse |
|
|
1Topcop
|
  |
| Joined: 09 Jun 2009 |
| Total Posts: 6635 |
|
|
| 05 Jun 2012 11:04 AM |
to make it so only one player sees it, you can put it in their PlayerGui or Camera.
Example: Instance.new("Hint",game.Players["1Topcop"].PlayerGui).Text = "Only 1Topcop sees this"
OR Instance.new("Part",game.Workspace.CurrentCamera).Anchored = true --[[ Must be local script ]] |
|
|
| Report Abuse |
|
|
RoflBread
|
  |
| Joined: 18 Jun 2009 |
| Total Posts: 3803 |
|
| |
|
1Topcop
|
  |
| Joined: 09 Jun 2009 |
| Total Posts: 6635 |
|
|
| 05 Jun 2012 11:07 AM |
:3 -->> A message to all: NOU.floodCheck <<-- |
|
|
| Report Abuse |
|
|
|
| 05 Jun 2012 11:20 AM |
I don't want a specific person to ONLY see it. I want whoever touches it to ONLY see it.
|
|
|
| Report Abuse |
|
|
RoflBread
|
  |
| Joined: 18 Jun 2009 |
| Total Posts: 3803 |
|
|
| 05 Jun 2012 11:30 AM |
p = game.Players:GetPlayerFromCharacter(hit.Parent) message.Parent = p.PlayerGui
???? |
|
|
| Report Abuse |
|
|