of     1   

xeeno90
#36281610Sunday, October 31, 2010 9:40 AM GMT

here it is: function onTouch(hit) x = hit.Parent.Name if game.Players:findFirstChild(x).TeamColor == BrickColor.new("Really Red") then hit.Parent:BreakJoints() end end script.Parent.touched:connect(onTouch)
xeeno90
#36281618Sunday, October 31, 2010 9:40 AM GMT

Wait, I think i know... I gotta see if its my problem...
xeeno90
#36281647Sunday, October 31, 2010 9:43 AM GMT

Okay, NVM about this post, its because the "red" in "Really red" was capitalized...
myrco919
#36281790Sunday, October 31, 2010 9:53 AM GMT

[ Content Deleted ]
Notunknown99
#36282595Sunday, October 31, 2010 10:54 AM GMT

@mycro: Comapring a BrickColor to a String? fail. @Poster: You didnt misspelt 'Touched' in the connection line
myrco919
#36282637Sunday, October 31, 2010 10:59 AM GMT

[ Content Deleted ]
Notunknown99
#36282679Sunday, October 31, 2010 11:03 AM GMT

He still spelt 'Touched' 'touched'
bloob827
#36282734Sunday, October 31, 2010 11:08 AM GMT

function onTouch(hit) x = hit.Parent:findFirstChild("Humanoid") if game.Players:findFirstChild(x).TeamColor == BrickColor.new("Really Red") then x:BreakJoints() end end script.Parent.Touched:connect(onTouch)
Notunknown99
#36282848Sunday, October 31, 2010 11:15 AM GMT

@bloob: Fail function onTouch(hit) x = hit.Parent:findFirstChild("Humanoid") p = hit.Parent.Name if x and game.Players:findFirstChild(p) and game.Players:findFirstChild(p).TeamColor == BrickColor.new("Really Red") then hit.Parent:BreakJoints() end end script.Parent.Touched:connect(onTouch)
Notunknown99
#36282860Sunday, October 31, 2010 11:16 AM GMT

function onTouch(hit) x = hit.Parent:findFirstChild("Humanoid") p = hit.Parent.Name if x and game.Players:findFirstChild(p) and game.Players:findFirstChild(p).TeamColor == BrickColor.new("Really red") then hit.Parent:BreakJoints() end end script.Parent.Touched:connect(onTouch) --[[ red fail D= ]]--
bloob827
#36282954Sunday, October 31, 2010 11:21 AM GMT

LOL!
Notunknown99
#36283085Sunday, October 31, 2010 11:29 AM GMT

LOL what?
bloob827
#36283133Sunday, October 31, 2010 11:32 AM GMT

We both failed :-0
Notunknown99
#36283242Sunday, October 31, 2010 11:38 AM GMT

You failed more.
bloob827
#36283265Sunday, October 31, 2010 11:39 AM GMT

NO!!!!!!!111 !!!! 11111 End of emo moment. No jk. :3
myrco919
#36283739Sunday, October 31, 2010 12:02 PM GMT

[ Content Deleted ]
bloob827
#36283950Sunday, October 31, 2010 12:10 PM GMT

function onTouch(hit) x = hit.Parent:findFirstChild("Humanoid") p = hit.Parent.Name if x and game.Players:findFirstChild("p") and game.Players:findFirstChild("p").TeamColor == BrickColor.new("Really red") then hit.Parent:BreakJoints() end end script.Parent.Touched:connect(onTouch)
Notunknown99
#36283978Sunday, October 31, 2010 12:11 PM GMT

@bloob: No. Just... no.
bloob827
#36284016Sunday, October 31, 2010 12:12 PM GMT

>_<
myrco919
#36284082Sunday, October 31, 2010 12:16 PM GMT

[ Content Deleted ]
xeeno90
#36336266Monday, November 01, 2010 7:47 AM GMT

"Touched" works capitalized, and lowercased.. Anyhow, I found out the problem..

    of     1