|
| 02 Aug 2011 12:47 PM |
Me make a script that Makes you change teams when you die.Like become a zombie.Please The Wiki Doesn't Explain this.P.s I went to script Helpers And they Said maybe which means no i bet..
~Am i trollin???~ |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Aug 2011 12:56 PM |
function Touch(hit) if hit.Parent:findFirstChild("Humanoid") ~= nil then hit.Parent:MoveTo(Vector3.new(0,0,0) end end |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Aug 2011 12:56 PM |
Forgot a bracket
function Touch(hit) if hit.Parent:findFirstChild("Humanoid") ~= nil then hit.Parent:MoveTo(Vector3.new(0,0,0)) end end |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Aug 2011 12:57 PM |
| I guess this doesn't make you change when you die, but it'd be easy to edit to make that happen |
|
|
| Report Abuse |
|
|
| |
|
pauljkl
|
  |
| Joined: 23 Oct 2008 |
| Total Posts: 9364 |
|
|
| 02 Aug 2011 08:35 PM |
Tummey, that function is irrelevant to the OPs question
Put this into a script inside StarterGui
script.Parent.Parent.Character.Humanoid.Died:connect(function() script.Parent.Parent.TeamColor = BrickColor.new("Bright red") -- change this color to desired one end) |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Aug 2011 08:54 PM |
| That's why i posted again, jeez... |
|
|
| Report Abuse |
|
|
| |
|
|
| 03 Aug 2011 07:33 AM |
| You need to insert a blank ScreenGui into the StarterGui first, then add the script inside. |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2011 07:34 AM |
LolICleanedUpPaulsScript() script.Parent.Parent.TeamColor = BrickColor.new("Bright red") end
script.Parent.Parent.Character.Humanoid.Died:connect(LolICleanedUpPaulsScript) |
|
|
| Report Abuse |
|
|