Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
|
| 08 Jan 2012 10:23 AM |
It's supposed to teleport the players to a spot, and insert a BoolValue into them. But it doesn't even teleport them Here is the script:
for _,v in pairs(game.Players:GetPlayers())do if v.Name ~= it.Name then v.Character.Torso:MoveTo(Vector3.new(map.Spawn.Position)) v.Character.Head.Transparency = 1 local tagged = Instance.new("BoolValue") tagged.Parent = v.Character tagged.Name = "Tagged" end end |
|
|
| Report Abuse |
|
|
| |
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
|
| 08 Jan 2012 10:26 AM |
| Yes, earlier in the script. |
|
|
| Report Abuse |
|
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
| |
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
|
| 08 Jan 2012 10:52 AM |
| Is there any way to test with 2 people and still see the output? |
|
|
| Report Abuse |
|
|
| |
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
| |
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
|
| 08 Jan 2012 10:59 AM |
| Now they have the same name.. so it won't go through the teleporting ): |
|
|
| Report Abuse |
|
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
|
| 08 Jan 2012 11:03 AM |
| I got rid of the part where it checks for the name but it didn't teleport them and there was no output D: |
|
|
| Report Abuse |
|
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
| |
|
|
| 08 Jan 2012 11:19 AM |
for _,v in pairs(game.Players:GetPlayers())do if v.Name ~= it.Name then v.Character.Torso.CFrame = CFrame.new(Vector3.new(map.Spawn.Position)) v.Character.Head.Transparency = 1 local tagged = Instance.new("BoolValue") tagged.Parent = v.Character tagged.Name = "Tagged" end end
This suspiciously looks like a snippet from the many hide and seek scripts out there. |
|
|
| Report Abuse |
|
|
Grove537
|
  |
| Joined: 05 Feb 2010 |
| Total Posts: 3478 |
|
|
| 08 Jan 2012 11:20 AM |
I made it myself I promise. and thanks :) |
|
|
| Report Abuse |
|
|