|
| 02 Aug 2013 07:09 PM |
local isAdmin = {["EchoDuplication"] = true, ["runeyak5"] = true, ["kingiceblock"] = true} function findPlayer(name) for _, player in ipairs(game.Players:GetPlayers()) do if player.Name:lower() == name:lower() then return player end end end function onChatted(message, player) if message:sub(1, 5) == "Load:FFA" and isAdmin[player.Name] then game.Lighting.l1.Parent = game.Workspace end end
function onChatted(message, player) if message:sub(1, 5) == "Remove:FFA" and isAdmin[player.Name] then game.Workspace.l1.Parent = game.Lighting end end game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(message) onChatted(message, player) end) end)
~♪~♫~♪~♫~♪~♫~♪~♫~ |
|
|
| Report Abuse |
|
|
| 02 Aug 2013 07:12 PM |
It did not
what's wrong with it? ;_;
~♪~♫~♪~♫~♪~♫~♪~♫~ |
|
|
| Report Abuse |
|