FE Admin Script (UPDATED 2022) - Pastebin.com (2024)

  1. Hello Everyone! This script is the New 2022 FE Admin Script

  2. ________________________________________________________________________________________________________-

  3. wait(.2)

  4. whitelist = {game.Players.LocalPlayer.Name,"Vortexturize","C0poration"} -- put admin names here

  5. banlist = {"noob","noob2"} -- put noob names here

  6. deletepath = game.Players.LocalPlayer.Character:FindFirstChild("Delete")

  7. deletepath2 = game.Players.LocalPlayer.Backpack:FindFirstChild("Delete")

  8. slock = false

  9. function newtag(plr)

  10. admintag = Instance.new("BoolValue")

  11. admintag.Parent = game.Players[plr]

  12. admintag.Value = true

  13. admintag.Name = "admin"

  14. print("created admin tag for " .. plr)

  15. end

  16. newtag(game.Players.LocalPlayer.Name)

  17. game.Players.LocalPlayer.ChildRemoved:connect(function(obj)

  18. if obj.Name == "admin" then

  19. newtag(game.Players.LocalPlayer.Name)

  20. end

  21. end)

  22. function adminexe(plr,msg)

  23. if plr:FindFirstChild("admin") then

  24. local lower = string.lower(msg)

  25. local len = string.len(lower)

  26. if string.find(lower,":kill ") then

  27. local name = string.gsub(lower,":kill ","")

  28. local player = nil

  29. if name == "others" then

  30. for i,v in pairs(game.Players:GetChildren()) do

  31. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then

  32. game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.Head, Vector3.new(0, -100, 0), Vector3.new(0, -100, 0))

  33. end

  34. end

  35. else

  36. names = game.Players:GetChildren()

  37. for i,v in pairs(names) do

  38. strlower = string.lower(v.Name)

  39. sub = string.sub(strlower,1,#name)

  40. if name == sub then

  41. player = v

  42. if player.Name ~= game.Players.LocalPlayer.Name then

  43. game.ReplicatedStorage.DragTools.RightPosition:FireServer(player.Character.Head, Vector3.new(0, -100, 0), Vector3.new(0, -100, 0))

  44. end

  45. end

  46. end

  47. end

  48. end

  49. if string.find(lower,":banish ") then

  50. local name = string.gsub(lower,":banish ","")

  51. local player = nil

  52. if name == "others" then

  53. for i,v in pairs(game.Players:GetChildren()) do

  54. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then

  55. game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))

  56. end

  57. end

  58. else

  59. names = game.Players:GetChildren()

  60. for i,v in pairs(names) do

  61. strlower = string.lower(v.Name)

  62. sub = string.sub(strlower,1,#name)

  63. if name == sub then

  64. player = v

  65. if player.Name ~= game.Players.LocalPlayer.Name then

  66. game.ReplicatedStorage.DragTools.RightPosition:FireServer(player.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))

  67. end

  68. end

  69. end

  70. end

  71. end

  72. if string.find(lower,":decalspam ") then

  73. local name = string.gsub(lower,":decalspam ","")

  74. local player = nil

  75. local function dabon(instance)

  76. for i,v in pairs(instance:GetChildren()) do

  77. if v:IsA("Decal") then

  78. game.ReplicatedStorage.ShopItems.FaceChange:FireServer(v, "http://www.roblox.com/asset/?id="..name)

  79. end

  80. dabon(v)

  81. end

  82. end

  83. dabon(workspace)

  84. local function dabon2(instance)

  85. for i,v in pairs(instance:GetChildren()) do

  86. if v:IsA("BasePart") then

  87. game.ReplicatedStorage.ShopItems.GiveDecal:FireServer(v, true, "http://www.roblox.com/asset/?id="..name)

  88. end

  89. dabon2(v)

  90. end

  91. end

  92. dabon2(workspace)

  93. end

  94. if string.find(lower,":particlespam ") then

  95. local name = string.gsub(lower,":particlespam ","")

  96. local player = nil

  97. local function dabon(instance)

  98. for i,v in pairs(instance:GetChildren()) do

  99. if v:IsA("BasePart") then

  100. game.ReplicatedStorage.ShopItems.AddEffect:FireServer(v, "http://www.roblox.com/asset/?id="..name)

  101. end

  102. dabon(v)

  103. end

  104. end

  105. dabon(workspace)

  106. end

  107. if string.find(lower,":wl ") then

  108. local name = string.gsub(lower,":wl ","")

  109. local player = nil

  110. local plrname = nil

  111. if name == "others" then

  112. for i,v in pairs(game.Players:GetChildren()) do

  113. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then

  114. table.insert(whitelist,(#whitelist+1),v.Name)

  115. newtag(v.Name)

  116. v.Chatted:connect(function(msg)

  117. adminexe(v,msg)

  118. end)

  119. end

  120. end

  121. else

  122. names = game.Players:GetChildren()

  123. for i,v in pairs(names) do

  124. strlower = string.lower(v.Name)

  125. sub = string.sub(strlower,1,#name)

  126. if name == sub then

  127. newtag(v.Name)

  128. table.insert(whitelist,(#whitelist+1),v.Name)

  129. v.Chatted:connect(function(msg)

  130. adminexe(v,msg)

  131. end)

  132. end

  133. end

  134. end

  135. end

  136. if string.find(lower,":unwl ") then

  137. local name = string.gsub(lower,":unwl ","")

  138. local player = nil

  139. local plrname = nil

  140. local index = nil

  141. if name == "others" then

  142. for i,v in pairs(whitelist) do

  143. for i,v in pairs(banlist) do

  144. if v ~= game.Players.LocalPlayer.Name then

  145. table.remove(whitelist,i)

  146. end

  147. end

  148. if game.Workspace:FindFirstChild(v) then

  149. if v.Name ~= game.Players.LocalPlayer.Name then

  150. if v:FindFirstChild("admin") then

  151. v.admin:Destroy()

  152. end

  153. end

  154. end

  155. end

  156. else

  157. names = whitelist

  158. for i,v in pairs(names) do

  159. strlower = string.lower(v)

  160. sub = string.sub(strlower,1,#name)

  161. if name == sub then

  162. table.remove(whitelist,i)

  163. end

  164. end

  165. end

  166. end

  167. if lower == ":wls" then

  168. for i,v in pairs(whitelist) do

  169. print("Player #" .. i .. " Player: " .. v)

  170. end

  171. end

  172. if string.find(lower,":money ") then

  173. local name = string.gsub(lower,":money ","")

  174. local player = nil

  175. game.ReplicatedStorage.ChangeMoney:FireServer(game.ReplicatedStorage.ShopTools.Banana, -name)

  176. end

  177. if string.find(lower,":deletetool") then

  178. local epic = Instance.new("Tool")

  179. local dab = Instance.new("Part")

  180. local plr = game.Players.LocalPlayer

  181. local tar_obj = nil

  182. local ok = game.ReplicatedStorage.DragTools.RightPosition

  183. dab.Parent = epic

  184. dab.Size = Vector3.new(0.2, 0.2, 0.2)

  185. epic.Parent = plr.Backpack

  186. epic.Name = "Delete"

  187. dab.Name = "Handle"

  188. epic.Equipped:Connect(function(m_S)

  189. print("m")

  190. m_S.Button1Down:Connect(function()

  191. print("M")

  192. tar_obj = m_S.Target

  193. ok:FireServer(tar_obj, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))

  194. end)

  195. end)

  196. end

  197. if string.find(lower,":awardbadge") then

  198. game.ReplicatedStorage.EventStorage.RewardBadge:FireServer()

  199. end

  200. if string.find(lower,":eventcake") then

  201. game.ReplicatedStorage.EventStorage.SpawnEventCake:FireServer()

  202. end

  203. if string.find(lower,":eventcake") then

  204. game.ReplicatedStorage.EventStorage.SpawnEventCake:FireServer()

  205. end

  206. if string.find(lower,":raincakes") then

  207. game.ReplicatedStorage.ShopItems.RainCakes:FireServer()

  208. end

  209. if string.find(lower,":credits") then

  210. local creditsdab = Instance.new("ScreenGui")

  211. local Frame = Instance.new("Frame")

  212. local aidez = Instance.new("ImageLabel")

  213. local names = Instance.new("TextLabel")

  214. local scriptmadeby = Instance.new("TextLabel")

  215. local x = Instance.new("TextButton")

  216. creditsdab.Name = "creditsdab"

  217. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

  218. Frame.Parent = creditsdab

  219. Frame.BackgroundColor3 = Color3.new(1, 1, 1)

  220. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)

  221. Frame.Size = UDim2.new(0, 274, 0, 274)

  222. aidez.Name = "aidez"

  223. aidez.Parent = Frame

  224. aidez.BackgroundColor3 = Color3.new(1, 1, 1)

  225. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  226. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)

  227. aidez.Size = UDim2.new(0, 274, 0, 274)

  228. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"

  229. names.Name = "names"

  230. names.Parent = Frame

  231. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  232. names.BackgroundTransparency = 0.30000001192093

  233. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  234. names.Position = UDim2.new(0, 0, 0.897810221, 0)

  235. names.Size = UDim2.new(0, 274, 0, 28)

  236. names.Font = Enum.Font.SourceSans

  237. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "

  238. names.TextColor3 = Color3.new(1, 1, 1)

  239. names.TextSize = 14

  240. scriptmadeby.Name = "scriptmadeby"

  241. scriptmadeby.Parent = Frame

  242. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  243. scriptmadeby.BackgroundTransparency = 0.30000001192093

  244. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  245. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)

  246. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)

  247. scriptmadeby.Font = Enum.Font.SourceSans

  248. scriptmadeby.Text = "Script made by"

  249. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)

  250. scriptmadeby.TextSize = 14

  251. x.Name = "x"

  252. x.Parent = creditsdab

  253. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  254. x.BackgroundTransparency = 0.30000001192093

  255. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  256. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)

  257. x.Size = UDim2.new(0, 28, 0, 28)

  258. x.Font = Enum.Font.SourceSansSemibold

  259. x.Text = "X"

  260. x.TextColor3 = Color3.new(1, 1, 1)

  261. x.TextSize = 30

  262. x.MouseButton1Click:connect(function()

  263. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()

  264. end)

  265. end

  266. if string.find(lower,"/e credits") then

  267. local creditsdab = Instance.new("ScreenGui")

  268. local Frame = Instance.new("Frame")

  269. local aidez = Instance.new("ImageLabel")

  270. local names = Instance.new("TextLabel")

  271. local scriptmadeby = Instance.new("TextLabel")

  272. local x = Instance.new("TextButton")

  273. creditsdab.Name = "creditsdab"

  274. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

  275. Frame.Parent = creditsdab

  276. Frame.BackgroundColor3 = Color3.new(1, 1, 1)

  277. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)

  278. Frame.Size = UDim2.new(0, 274, 0, 274)

  279. aidez.Name = "aidez"

  280. aidez.Parent = Frame

  281. aidez.BackgroundColor3 = Color3.new(1, 1, 1)

  282. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  283. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)

  284. aidez.Size = UDim2.new(0, 274, 0, 274)

  285. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"

  286. names.Name = "names"

  287. names.Parent = Frame

  288. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  289. names.BackgroundTransparency = 0.30000001192093

  290. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  291. names.Position = UDim2.new(0, 0, 0.897810221, 0)

  292. names.Size = UDim2.new(0, 274, 0, 28)

  293. names.Font = Enum.Font.SourceSans

  294. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "

  295. names.TextColor3 = Color3.new(1, 1, 1)

  296. names.TextSize = 14

  297. scriptmadeby.Name = "scriptmadeby"

  298. scriptmadeby.Parent = Frame

  299. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  300. scriptmadeby.BackgroundTransparency = 0.30000001192093

  301. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  302. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)

  303. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)

  304. scriptmadeby.Font = Enum.Font.SourceSans

  305. scriptmadeby.Text = "Script made by"

  306. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)

  307. scriptmadeby.TextSize = 14

  308. x.Name = "x"

  309. x.Parent = creditsdab

  310. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  311. x.BackgroundTransparency = 0.30000001192093

  312. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  313. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)

  314. x.Size = UDim2.new(0, 28, 0, 28)

  315. x.Font = Enum.Font.SourceSansSemibold

  316. x.Text = "X"

  317. x.TextColor3 = Color3.new(1, 1, 1)

  318. x.TextSize = 30

  319. x.MouseButton1Click:connect(function()

  320. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()

  321. end)

  322. end

  323. if string.find(lower,"/e :credits") then

  324. local creditsdab = Instance.new("ScreenGui")

  325. local Frame = Instance.new("Frame")

  326. local aidez = Instance.new("ImageLabel")

  327. local names = Instance.new("TextLabel")

  328. local scriptmadeby = Instance.new("TextLabel")

  329. local x = Instance.new("TextButton")

  330. creditsdab.Name = "creditsdab"

  331. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

  332. Frame.Parent = creditsdab

  333. Frame.BackgroundColor3 = Color3.new(1, 1, 1)

  334. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)

  335. Frame.Size = UDim2.new(0, 274, 0, 274)

  336. aidez.Name = "aidez"

  337. aidez.Parent = Frame

  338. aidez.BackgroundColor3 = Color3.new(1, 1, 1)

  339. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  340. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)

  341. aidez.Size = UDim2.new(0, 274, 0, 274)

  342. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"

  343. names.Name = "names"

  344. names.Parent = Frame

  345. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  346. names.BackgroundTransparency = 0.30000001192093

  347. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  348. names.Position = UDim2.new(0, 0, 0.897810221, 0)

  349. names.Size = UDim2.new(0, 274, 0, 28)

  350. names.Font = Enum.Font.SourceSans

  351. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "

  352. names.TextColor3 = Color3.new(1, 1, 1)

  353. names.TextSize = 14

  354. scriptmadeby.Name = "scriptmadeby"

  355. scriptmadeby.Parent = Frame

  356. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  357. scriptmadeby.BackgroundTransparency = 0.30000001192093

  358. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  359. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)

  360. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)

  361. scriptmadeby.Font = Enum.Font.SourceSans

  362. scriptmadeby.Text = "Script made by"

  363. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)

  364. scriptmadeby.TextSize = 14

  365. x.Name = "x"

  366. x.Parent = creditsdab

  367. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  368. x.BackgroundTransparency = 0.30000001192093

  369. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  370. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)

  371. x.Size = UDim2.new(0, 28, 0, 28)

  372. x.Font = Enum.Font.SourceSansSemibold

  373. x.Text = "X"

  374. x.TextColor3 = Color3.new(1, 1, 1)

  375. x.TextSize = 30

  376. x.MouseButton1Click:connect(function()

  377. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()

  378. end)

  379. end

  380. if string.find(lower,":cmds") then

  381. print("----------------COMMANDS-------------------")

  382. print("Selection options: Full Player Name, Abrreviated, Others, Silent")

  383. print("Almost all commands have silent variants.")

  384. print('Example: ":kill others"')

  385. print('Silent Example: "/e :kill others"')

  386. print('Silent Example 2: "/e kill others"')

  387. print()

  388. print(":cmds - I wonder what this does.")

  389. print(":kill PLAYERNAME - Kills the target")

  390. print(":money NUMBER - Gives you the ammount of money you specify")

  391. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")

  392. print(":eventcake - Spawns the event cake in front of you.")

  393. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")

  394. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")

  395. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")

  396. print(":credits - Shows the cool gui you saw when you executed the script.")

  397. print()

  398. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')

  399. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')

  400. print('and the same goes for :wls, since the game is filtering enabled, however they will')

  401. print('be able to use commands if whitelisted')

  402. print('You can not be unwhitelisted or killed')

  403. print("Have fun")

  404. print("------------------------------------------")

  405. print("--Vortexturize | aidez moi | ObitoXDm8OI--")

  406. print("------------Credit to Timeless------------")

  407. print("------------------------------------------")

  408. end

  409. print("----------------COMMANDS-------------------")

  410. print("Selection options: Full Player Name, Abrreviated, Others, Silent")

  411. print("Almost all commands have silent variants.")

  412. print('Example: ":kill others"')

  413. print('Silent Example: "/e :kill others"')

  414. print('Silent Example 2: "/e kill others"')

  415. print()

  416. print(":cmds - I wonder what this does.")

  417. print(":kill PLAYERNAME - Kills the target")

  418. print(":money NUMBER - Gives you the ammount of money you specify")

  419. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")

  420. print(":eventcake - Spawns the event cake in front of you.")

  421. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")

  422. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")

  423. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")

  424. print(":credits - Shows the cool gui you saw when you executed the script.")

  425. print()

  426. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')

  427. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')

  428. print('and the same goes for :wls, since the game is filtering enabled, however they will')

  429. print('be able to use commands if whitelisted')

  430. print('You can not be unwhitelisted or killed')

  431. print("Have fun")

  432. print("------------------------------------------")

  433. print("--Vortexturize | aidez moi | ObitoXDm8OI--")

  434. print("------------Credit to Timeless------------")

  435. print("------------------------------------------")

  436. end

  437. print("----------------COMMANDS-------------------")

  438. print("Selection options: Full Player Name, Abrreviated, Others, Silent")

  439. print("Almost all commands have silent variants.")

  440. print('Example: ":kill others"')

  441. print('Silent Example: "/e :kill others"')

  442. print('Silent Example 2: "/e kill others"')

  443. print()

  444. print(":cmds - I wonder what this does.")

  445. print(":kill PLAYERNAME - Kills the target")

  446. print(":money NUMBER - Gives you the ammount of money you specify")

  447. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")

  448. print(":eventcake - Spawns the event cake in front of you.")

  449. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")

  450. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")

  451. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")

  452. print(":credits - Shows the cool gui you saw when you executed the script.")

  453. print()

  454. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')

  455. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')

  456. print('and the same goes for :wls, since the game is filtering enabled, however they will')

  457. print('be able to use commands if whitelisted')

  458. print('You can not be unwhitelisted or killed')

  459. print("Have fun")

  460. print("------------------------------------------")

  461. print("--Vortexturize | aidez moi | ObitoXDm8OI--")

  462. print("------------Credit to Timeless------------")

  463. print("------------------------------------------")

  464. end

  465. game.Players.LocalPlayer.Chatted:connect(function(msg)

  466. adminexe(game.Players.LocalPlayer,msg)

  467. end)

  468. function start(plr)

  469. local found = false

  470. local banned = false

  471. for i=1,#whitelist do

  472. if plr.Name == (whitelist[i]) then

  473. found = true

  474. end

  475. end

  476. for i=1,#banlist do

  477. if plr.Name == banlist[i] then

  478. banned = true

  479. end

  480. if banned == true then

  481. game.Workspace.Delete.delete:FireServer(plr)

  482. end

  483. end

  484. if found == false and slock == true then

  485. game.Workspace.Delete.delete:FireServer(plr)

  486. end

  487. if found == true then

  488. newtag(plr.Name)

  489. plr.Chatted:connect(function(msg)

  490. adminexe(plr,msg)

  491. end)

  492. end

  493. end

  494. game.Players.PlayerAdded:connect(function(plr)

  495. start(plr)

  496. end)

  497. local creditsdab = Instance.new("ScreenGui")

  498. local Frame = Instance.new("Frame")

  499. local aidez = Instance.new("ImageLabel")

  500. local names = Instance.new("TextLabel")

  501. local scriptmadeby = Instance.new("TextLabel")

  502. local scriptmadeby_2 = Instance.new("TextLabel")

  503. local x = Instance.new("TextButton")

  504. creditsdab.Name = "creditsdab"

  505. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

  506. Frame.Parent = creditsdab

  507. Frame.BackgroundColor3 = Color3.new(1, 1, 1)

  508. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)

  509. Frame.Size = UDim2.new(0, 274, 0, 274)

  510. aidez.Name = "aidez"

  511. aidez.Parent = Frame

  512. aidez.BackgroundColor3 = Color3.new(1, 1, 1)

  513. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  514. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)

  515. aidez.Size = UDim2.new(0, 274, 0, 274)

  516. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"

  517. names.Name = "names"

  518. names.Parent = Frame

  519. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  520. names.BackgroundTransparency = 0.30000001192093

  521. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  522. names.Position = UDim2.new(0, 0, 0.897810221, 0)

  523. names.Size = UDim2.new(0, 274, 0, 28)

  524. names.Font = Enum.Font.SourceSans

  525. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "

  526. names.TextColor3 = Color3.new(1, 1, 1)

  527. names.TextSize = 14

  528. scriptmadeby.Name = "scriptmadeby"

  529. scriptmadeby.Parent = Frame

  530. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  531. scriptmadeby.BackgroundTransparency = 0.30000001192093

  532. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  533. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)

  534. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)

  535. scriptmadeby.Font = Enum.Font.SourceSans

  536. scriptmadeby.Text = "Script made by"

  537. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)

  538. scriptmadeby.TextSize = 14

  539. scriptmadeby_2.Name = "scriptmadeby"

  540. scriptmadeby_2.Parent = Frame

  541. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  542. scriptmadeby_2.BackgroundTransparency = 0.30000001192093

  543. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  544. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)

  545. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)

  546. scriptmadeby_2.Font = Enum.Font.SourceSans

  547. scriptmadeby_2.Text = "Check the dev console for a list of commands! (F9 or Shift + F9)"

  548. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)

  549. scriptmadeby_2.TextScaled = true

  550. scriptmadeby_2.TextSize = 14

  551. scriptmadeby_2.TextWrapped = true

  552. x.Name = "x"

  553. x.Parent = creditsdab

  554. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  555. x.BackgroundTransparency = 0.30000001192093

  556. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)

  557. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)

  558. x.Size = UDim2.new(0, 28, 0, 28)

  559. x.Font = Enum.Font.SourceSansSemibold

  560. x.Text = "X"

  561. x.TextColor3 = Color3.new(1, 1, 1)

  562. x.TextSize = 30

  563. x.MouseButton1Click:connect(function()

  564. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()

  565. end)

  566. print("----------------COMMANDS-------------------")

  567. print("Selection options: Full Player Name, Abrreviated, Others, Silent")

  568. print("Almost all commands have silent variants.")

  569. print('Example: ":kill others"')

  570. print('Silent Example: "/e :kill others"')

  571. print('Silent Example 2: "/e kill others"')

  572. print()

  573. print(":cmds - I wonder what this does.")

  574. print(":kill PLAYERNAME - Kills the target")

  575. print(":deletetool - A tool that sends parts to infinity and beyond")

  576. print(":banish PLAYERNAME - Sends players to infinity and beyond.")

  577. print(":money NUMBER - Gives you the ammount of money you specify")

  578. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")

  579. print(":eventcake - Spawns the event cake in front of you.")

  580. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")

  581. print(":decalspam IMAGEID - Replaces any decals in the game with an image of your choice.")

  582. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")

  583. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")

  584. print(":credits - Shows the cool gui you saw when you executed the script.")

  585. print()

  586. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')

  587. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')

  588. print('and the same goes for :wls, since the game is filtering enabled, however they will')

  589. print('be able to use commands if whitelisted')

  590. print('You can not be unwhitelisted or killed')

  591. print("Have fun")

  592. print("------------------------------------------")

  593. print("--Vortexturize | aidez moi | ObitoXDm8OI--")

  594. print("------------Credit to Timeless------------")

  595. print("------------------------------------------")

FE Admin Script (UPDATED 2022) - Pastebin.com (2024)

References

Top Articles
Latest Posts
Article information

Author: Clemencia Bogisich Ret

Last Updated:

Views: 5620

Rating: 5 / 5 (60 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Clemencia Bogisich Ret

Birthday: 2001-07-17

Address: Suite 794 53887 Geri Spring, West Cristentown, KY 54855

Phone: +5934435460663

Job: Central Hospitality Director

Hobby: Yoga, Electronics, Rafting, Lockpicking, Inline skating, Puzzles, scrapbook

Introduction: My name is Clemencia Bogisich Ret, I am a super, outstanding, graceful, friendly, vast, comfortable, agreeable person who loves writing and wants to share my knowledge and understanding with you.