Rurith
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 9218 |
|
|
| 31 Dec 2014 04:49 PM |
The point of the script is to set a outscore - like !SetOutscore 5.
So when a person gets his 5th Wipeout I want it to team him white the respawn him.
I want to be able to do like !SetOutscore 5, 6, 3, 1, 7.
Here is my current script:
local group_id = 954478 local group_rank_permission = 11 local administrators = {"Rurith"} local trigger = "!Outscore"
local function theStart(even deaths.Value = deaths.Value + 1 if deaths.Value>("!Outscore"...% then player.TeamColor=BrickColor.new("White") end game.Players.PlayerAdded:connect(function(player) if player:GetRankInGroup(group_id) >= group_rank_permission then table.insert(administrators, player) player.Chatted:connect(function(message) if message:sub(1, trigger:len()) == trigger then theStart(true) end end) end end)
|
|
|
| Report Abuse |
|