of     1   

Thurston_Morris
#139850602Thursday, July 10, 2014 6:19 AM GMT

A brick that kills... bright green team, violet team, bright yellow team, bright red team, bright orange team, and bright blue team? All the team names are (Green Tycoon) (Purple Tycoon) (Yellow Tycoon) (Red Tycoon) (Orange Tycoon) (Blue Tycoon)
phoenix53124
#139850865Thursday, July 10, 2014 6:23 AM GMT

colorkill = {} --Insert names of Colors here script.Parent.Touched:connect(function(h) if h.Parent:FindFirstChild("Humanoid") then plr = game.Players:GetPlayerFromCharacter(h.Parent) for i=1,#colorkill do if plr.TeamColor == colorkill[i] then plr.Character:BreakJoints() break end end end end)
Thurston_Morris
#139850935Thursday, July 10, 2014 6:24 AM GMT

*Bright violet - will pay 100 robux, not like that's much but this seems like it would be something easy to make
MHebes
#139851181Thursday, July 10, 2014 6:27 AM GMT

Fine, but only because I'm bored. I don't normally respond to such bossy requests, though. Put it in a part local kill = { "Bright green", "Bright violet", "Bright yellow", "Bright red", "Bright orange", "Bright blue", } script.Parent.Touched:connect(function(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player and not player.Neutral then for _, team in pairs(kill) do if player.TeamColor == BrickColor.new(team) then pcall(function() player.Character.Humanoid.Health = 0 end) end end end end)
phoenix53124
#139851351Thursday, July 10, 2014 6:30 AM GMT

>_> I'm sorry, I must have been late

    of     1