of     1   

Scripter
#532499Thursday, February 28, 2008 1:27 AM GMT

--[[Thanks to anaminus for making. Thanks to scripter for publishing. THIS SCRIPT WILL REPLACE ADMIN ROOMS AS WE KNOW IT!!]]-- --[[Put the weapons to be given in the Lighting]]-- --[[This script gives admin weapons, extra health, and a force field.]]-- --[[It has a permission list and an admin shirt]]-- admins = {"???","???","???"} ShirtID = "#######" --Replace ####### with shirt's ID. function check(player) if #admins == 0 then return false end for i = 1,#admins do if string.lower(player.Name)==string.lower(admins[i]) then return true end end return false end function checkShirt(player) if player.Character.Torso.roblox.Texture == ("http://www.roblox.com/asset/?version=1&id="..ShirtID) then return true end return false end function onPlayerRespawned(newPlayer) if newPlayer == nil then return end if check(newPlayer) or checkShirt(newPlayer) then local w = game.Lighting:GetChildren() for i = 1,#w do if w[i].className == "Tool" or w[i].className == "HopperBin" then w[i]:Clone().Parent = newPlayer.Backpack end end local shield = Instance.new("ForceField") shield.Parent = newPlayer.Character local h = newPlayer.Character.Humanoid h.MaxHealth = 2147483648 h.Health = 2147483648 end end function onPlayerEntered(newPlayer) newPlayer.Changed:connect(function (property) if (property == "Character") then onPlayerRespawned(newPlayer) end end) end game.Players.PlayerAdded:connect(onPlayerEntered)
ipod525
#532523Thursday, February 28, 2008 1:30 AM GMT

Nice dude. I don't think that I'll ever need a admin room again.
BrianReddus
#532620Thursday, February 28, 2008 1:45 AM GMT

Is the ) around the 2nd to last End nessicary?
BrianReddus
#532633Thursday, February 28, 2008 1:46 AM GMT

Ih and nice job. And its very easy to add more stuff too.
Scripter
#532639Thursday, February 28, 2008 1:48 AM GMT

And everything is nessecary!
LinkinParkRulez
Top 100 Poster
#532726Thursday, February 28, 2008 2:06 AM GMT

This script is wesome, but I dont think it will put an end to admin rooms. Think about what also could be in admin rooms: Morphs, rides, etc.
Scripter
#533169Thursday, February 28, 2008 3:50 AM GMT

Im glad people like it...
Scripter
#534095Thursday, February 28, 2008 7:37 PM GMT

Who will use this awesome script?
hk1777
#534105Thursday, February 28, 2008 7:48 PM GMT

i used it and your one of the admins
Romulus
#534406Thursday, February 28, 2008 9:24 PM GMT

admins = { } tools = { } local l = game.Lighting:GetChildren() for i = 1,#l do if l[i].className == "HopperBin" or l[i].className == "Tool" then table.insert(tools, l[i]) end end function onRespawn(player) while true do if player.Character~=nil then break end wait() end for i = 1,#admins do if string.lower(admins[i]) == string.lower(player.Name) then for b = 1,#tools do tools[b]:Clone().Parent = player.Backpack end Instance.new("ForceField").Parent = player.Character player.Character.Humanoid.MaxHealth = 99999999 player.Character.Humanoid:TakeDamage(-99999999) end end function onEntered(newPlayer) newPlayer.Changed:connect(function(property) if property == "Character" then onRespawn(newPlayer) end) for i = 1,#admins do if string.lower(admins[i]) == string.lower(newPlayer.Name) then return end end while true do if newPlayer.Character~=nil then break end wait() end if newPlayer.Character.ShirtGraphic.Graphic == "!!!!!!!!!!!!!!!" then table.insert(admins, newPlayer.Name) end end game.Players.ChildAdded:connect(onEntered)
Romulus
#534408Thursday, February 28, 2008 9:25 PM GMT

Mines better. Don't put anything in tools, but you can put names in admins.
ipod525
#535145Thursday, February 28, 2008 11:54 PM GMT

How come it's not working?
AgentBloxxer
#535239Friday, February 29, 2008 12:12 AM GMT

Cuz romulus is a noob and she/he is Zuka who is also a noob.
Cull
#545063Sunday, March 02, 2008 12:44 AM GMT

the shirt part doesn't work for me...
AgentBloxxer
#545333Sunday, March 02, 2008 1:50 AM GMT

Niether does mine.....
brOofrange
Top 100 Poster
#545437Sunday, March 02, 2008 2:11 AM GMT

=O! Scripter copied off that other forum i cant remember

    of     1