Advertisement
TheFPSLIMIER

FE Admin Script (UPDATED 2022)

Mar 13th, 2022
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.11 KB | None | 0 0
  1. Hello Everyone! This script is the New 2022 FE Admin Script
  2. ________________________________________________________________________________________________________-
  3.  
  4. wait(.2)
  5. whitelist = {game.Players.LocalPlayer.Name,"Vortexturize","C0poration"} -- put admin names here
  6. banlist = {"noob","noob2"} -- put noob names here
  7. deletepath = game.Players.LocalPlayer.Character:FindFirstChild("Delete")
  8. deletepath2 = game.Players.LocalPlayer.Backpack:FindFirstChild("Delete")
  9. slock = false
  10.  
  11. function newtag(plr)
  12. admintag = Instance.new("BoolValue")
  13. admintag.Parent = game.Players[plr]
  14. admintag.Value = true
  15. admintag.Name = "admin"
  16. print("created admin tag for " .. plr)
  17. end
  18.  
  19.  
  20.  
  21. newtag(game.Players.LocalPlayer.Name)
  22.  
  23. game.Players.LocalPlayer.ChildRemoved:connect(function(obj)
  24. if obj.Name == "admin" then
  25. newtag(game.Players.LocalPlayer.Name)
  26. end
  27. end)
  28.  
  29. function adminexe(plr,msg)
  30. if plr:FindFirstChild("admin") then
  31.  
  32. local lower = string.lower(msg)
  33. local len = string.len(lower)
  34.  
  35.  
  36.  
  37.  
  38. if string.find(lower,":kill ") then
  39. local name = string.gsub(lower,":kill ","")
  40. local player = nil
  41.  
  42. if name == "others" then
  43. for i,v in pairs(game.Players:GetChildren()) do
  44. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  45. game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.Head, Vector3.new(0, -100, 0), Vector3.new(0, -100, 0))
  46. end
  47. end
  48. else
  49.  
  50. names = game.Players:GetChildren()
  51.  
  52. for i,v in pairs(names) do
  53. strlower = string.lower(v.Name)
  54. sub = string.sub(strlower,1,#name)
  55.  
  56. if name == sub then
  57. player = v
  58. if player.Name ~= game.Players.LocalPlayer.Name then
  59. game.ReplicatedStorage.DragTools.RightPosition:FireServer(player.Character.Head, Vector3.new(0, -100, 0), Vector3.new(0, -100, 0))
  60. end
  61. end
  62. end
  63. end
  64. end
  65.  
  66.  
  67. if string.find(lower,":banish ") then
  68. local name = string.gsub(lower,":banish ","")
  69. local player = nil
  70.  
  71. if name == "others" then
  72. for i,v in pairs(game.Players:GetChildren()) do
  73. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  74. game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))
  75. end
  76. end
  77. else
  78.  
  79. names = game.Players:GetChildren()
  80.  
  81. for i,v in pairs(names) do
  82. strlower = string.lower(v.Name)
  83. sub = string.sub(strlower,1,#name)
  84.  
  85. if name == sub then
  86. player = v
  87. if player.Name ~= game.Players.LocalPlayer.Name then
  88. game.ReplicatedStorage.DragTools.RightPosition:FireServer(player.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))
  89. end
  90. end
  91. end
  92. end
  93. end
  94.  
  95.  
  96.  
  97.  
  98. if string.find(lower,":decalspam ") then
  99. local name = string.gsub(lower,":decalspam ","")
  100. local player = nil
  101.  
  102. local function dabon(instance)
  103. for i,v in pairs(instance:GetChildren()) do
  104. if v:IsA("Decal") then
  105. game.ReplicatedStorage.ShopItems.FaceChange:FireServer(v, "http://www.roblox.com/asset/?id="..name)
  106. end
  107. dabon(v)
  108. end
  109. end
  110. dabon(workspace)
  111.  
  112.  
  113.  
  114. local function dabon2(instance)
  115. for i,v in pairs(instance:GetChildren()) do
  116. if v:IsA("BasePart") then
  117. game.ReplicatedStorage.ShopItems.GiveDecal:FireServer(v, true, "http://www.roblox.com/asset/?id="..name)
  118. end
  119. dabon2(v)
  120. end
  121. end
  122. dabon2(workspace)
  123. end
  124.  
  125.  
  126. if string.find(lower,":particlespam ") then
  127. local name = string.gsub(lower,":particlespam ","")
  128. local player = nil
  129.  
  130. local function dabon(instance)
  131. for i,v in pairs(instance:GetChildren()) do
  132. if v:IsA("BasePart") then
  133. game.ReplicatedStorage.ShopItems.AddEffect:FireServer(v, "http://www.roblox.com/asset/?id="..name)
  134. end
  135. dabon(v)
  136. end
  137. end
  138. dabon(workspace)
  139. end
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149. if string.find(lower,":wl ") then
  150. local name = string.gsub(lower,":wl ","")
  151. local player = nil
  152. local plrname = nil
  153.  
  154. if name == "others" then
  155. for i,v in pairs(game.Players:GetChildren()) do
  156. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  157. table.insert(whitelist,(#whitelist+1),v.Name)
  158. newtag(v.Name)
  159.  
  160. v.Chatted:connect(function(msg)
  161. adminexe(v,msg)
  162. end)
  163. end
  164. end
  165. else
  166.  
  167. names = game.Players:GetChildren()
  168.  
  169. for i,v in pairs(names) do
  170. strlower = string.lower(v.Name)
  171. sub = string.sub(strlower,1,#name)
  172.  
  173. if name == sub then
  174. newtag(v.Name)
  175. table.insert(whitelist,(#whitelist+1),v.Name)
  176.  
  177. v.Chatted:connect(function(msg)
  178. adminexe(v,msg)
  179. end)
  180. end
  181. end
  182. end
  183. end
  184.  
  185. if string.find(lower,":unwl ") then
  186. local name = string.gsub(lower,":unwl ","")
  187. local player = nil
  188. local plrname = nil
  189. local index = nil
  190.  
  191. if name == "others" then
  192. for i,v in pairs(whitelist) do
  193. for i,v in pairs(banlist) do
  194. if v ~= game.Players.LocalPlayer.Name then
  195. table.remove(whitelist,i)
  196. end
  197. end
  198.  
  199. if game.Workspace:FindFirstChild(v) then
  200.  
  201. if v.Name ~= game.Players.LocalPlayer.Name then
  202. if v:FindFirstChild("admin") then
  203. v.admin:Destroy()
  204. end
  205. end
  206. end
  207. end
  208. else
  209. names = whitelist
  210.  
  211. for i,v in pairs(names) do
  212. strlower = string.lower(v)
  213. sub = string.sub(strlower,1,#name)
  214.  
  215. if name == sub then
  216. table.remove(whitelist,i)
  217. end
  218. end
  219. end
  220. end
  221.  
  222. if lower == ":wls" then
  223. for i,v in pairs(whitelist) do
  224. print("Player #" .. i .. " Player: " .. v)
  225. end
  226. end
  227.  
  228.  
  229.  
  230. if string.find(lower,":money ") then
  231. local name = string.gsub(lower,":money ","")
  232. local player = nil
  233. game.ReplicatedStorage.ChangeMoney:FireServer(game.ReplicatedStorage.ShopTools.Banana, -name)
  234.  
  235. end
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250. if string.find(lower,":deletetool") then
  251. local epic = Instance.new("Tool")
  252. local dab = Instance.new("Part")
  253. local plr = game.Players.LocalPlayer
  254. local tar_obj = nil
  255. local ok = game.ReplicatedStorage.DragTools.RightPosition
  256. dab.Parent = epic
  257. dab.Size = Vector3.new(0.2, 0.2, 0.2)
  258. epic.Parent = plr.Backpack
  259. epic.Name = "Delete"
  260. dab.Name = "Handle"
  261. epic.Equipped:Connect(function(m_S)
  262. print("m")
  263.  
  264. m_S.Button1Down:Connect(function()
  265. print("M")
  266.  
  267. tar_obj = m_S.Target
  268.  
  269. ok:FireServer(tar_obj, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))
  270.  
  271. end)
  272. end)
  273. end
  274.  
  275.  
  276.  
  277. if string.find(lower,":awardbadge") then
  278. game.ReplicatedStorage.EventStorage.RewardBadge:FireServer()
  279. end
  280.  
  281. if string.find(lower,":eventcake") then
  282. game.ReplicatedStorage.EventStorage.SpawnEventCake:FireServer()
  283. end
  284.  
  285. if string.find(lower,":eventcake") then
  286. game.ReplicatedStorage.EventStorage.SpawnEventCake:FireServer()
  287. end
  288.  
  289.  
  290. if string.find(lower,":raincakes") then
  291. game.ReplicatedStorage.ShopItems.RainCakes:FireServer()
  292. end
  293.  
  294.  
  295.  
  296.  
  297.  
  298. if string.find(lower,":credits") then
  299. local creditsdab = Instance.new("ScreenGui")
  300. local Frame = Instance.new("Frame")
  301. local aidez = Instance.new("ImageLabel")
  302. local names = Instance.new("TextLabel")
  303. local scriptmadeby = Instance.new("TextLabel")
  304. local x = Instance.new("TextButton")
  305.  
  306. creditsdab.Name = "creditsdab"
  307. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  308.  
  309. Frame.Parent = creditsdab
  310. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  311. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  312. Frame.Size = UDim2.new(0, 274, 0, 274)
  313.  
  314. aidez.Name = "aidez"
  315. aidez.Parent = Frame
  316. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  317. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  318. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  319. aidez.Size = UDim2.new(0, 274, 0, 274)
  320. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  321.  
  322. names.Name = "names"
  323. names.Parent = Frame
  324. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  325. names.BackgroundTransparency = 0.30000001192093
  326. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  327. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  328. names.Size = UDim2.new(0, 274, 0, 28)
  329. names.Font = Enum.Font.SourceSans
  330. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  331. names.TextColor3 = Color3.new(1, 1, 1)
  332. names.TextSize = 14
  333.  
  334. scriptmadeby.Name = "scriptmadeby"
  335. scriptmadeby.Parent = Frame
  336. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  337. scriptmadeby.BackgroundTransparency = 0.30000001192093
  338. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  339. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  340. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  341. scriptmadeby.Font = Enum.Font.SourceSans
  342. scriptmadeby.Text = "Script made by"
  343. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  344. scriptmadeby.TextSize = 14
  345.  
  346. x.Name = "x"
  347. x.Parent = creditsdab
  348. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  349. x.BackgroundTransparency = 0.30000001192093
  350. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  351. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  352. x.Size = UDim2.new(0, 28, 0, 28)
  353. x.Font = Enum.Font.SourceSansSemibold
  354. x.Text = "X"
  355. x.TextColor3 = Color3.new(1, 1, 1)
  356. x.TextSize = 30
  357.  
  358. x.MouseButton1Click:connect(function()
  359. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  360. end)
  361. end
  362.  
  363. if string.find(lower,"/e credits") then
  364. local creditsdab = Instance.new("ScreenGui")
  365. local Frame = Instance.new("Frame")
  366. local aidez = Instance.new("ImageLabel")
  367. local names = Instance.new("TextLabel")
  368. local scriptmadeby = Instance.new("TextLabel")
  369. local x = Instance.new("TextButton")
  370.  
  371. creditsdab.Name = "creditsdab"
  372. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  373.  
  374. Frame.Parent = creditsdab
  375. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  376. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  377. Frame.Size = UDim2.new(0, 274, 0, 274)
  378.  
  379. aidez.Name = "aidez"
  380. aidez.Parent = Frame
  381. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  382. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  383. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  384. aidez.Size = UDim2.new(0, 274, 0, 274)
  385. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  386.  
  387. names.Name = "names"
  388. names.Parent = Frame
  389. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  390. names.BackgroundTransparency = 0.30000001192093
  391. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  392. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  393. names.Size = UDim2.new(0, 274, 0, 28)
  394. names.Font = Enum.Font.SourceSans
  395. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  396. names.TextColor3 = Color3.new(1, 1, 1)
  397. names.TextSize = 14
  398.  
  399. scriptmadeby.Name = "scriptmadeby"
  400. scriptmadeby.Parent = Frame
  401. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  402. scriptmadeby.BackgroundTransparency = 0.30000001192093
  403. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  404. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  405. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  406. scriptmadeby.Font = Enum.Font.SourceSans
  407. scriptmadeby.Text = "Script made by"
  408. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  409. scriptmadeby.TextSize = 14
  410.  
  411. x.Name = "x"
  412. x.Parent = creditsdab
  413. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  414. x.BackgroundTransparency = 0.30000001192093
  415. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  416. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  417. x.Size = UDim2.new(0, 28, 0, 28)
  418. x.Font = Enum.Font.SourceSansSemibold
  419. x.Text = "X"
  420. x.TextColor3 = Color3.new(1, 1, 1)
  421. x.TextSize = 30
  422.  
  423. x.MouseButton1Click:connect(function()
  424. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  425. end)
  426. end
  427.  
  428. if string.find(lower,"/e :credits") then
  429. local creditsdab = Instance.new("ScreenGui")
  430. local Frame = Instance.new("Frame")
  431. local aidez = Instance.new("ImageLabel")
  432. local names = Instance.new("TextLabel")
  433. local scriptmadeby = Instance.new("TextLabel")
  434. local x = Instance.new("TextButton")
  435.  
  436. creditsdab.Name = "creditsdab"
  437. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  438.  
  439. Frame.Parent = creditsdab
  440. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  441. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  442. Frame.Size = UDim2.new(0, 274, 0, 274)
  443.  
  444. aidez.Name = "aidez"
  445. aidez.Parent = Frame
  446. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  447. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  448. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  449. aidez.Size = UDim2.new(0, 274, 0, 274)
  450. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  451.  
  452. names.Name = "names"
  453. names.Parent = Frame
  454. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  455. names.BackgroundTransparency = 0.30000001192093
  456. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  457. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  458. names.Size = UDim2.new(0, 274, 0, 28)
  459. names.Font = Enum.Font.SourceSans
  460. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  461. names.TextColor3 = Color3.new(1, 1, 1)
  462. names.TextSize = 14
  463.  
  464. scriptmadeby.Name = "scriptmadeby"
  465. scriptmadeby.Parent = Frame
  466. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  467. scriptmadeby.BackgroundTransparency = 0.30000001192093
  468. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  469. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  470. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  471. scriptmadeby.Font = Enum.Font.SourceSans
  472. scriptmadeby.Text = "Script made by"
  473. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  474. scriptmadeby.TextSize = 14
  475.  
  476. x.Name = "x"
  477. x.Parent = creditsdab
  478. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  479. x.BackgroundTransparency = 0.30000001192093
  480. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  481. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  482. x.Size = UDim2.new(0, 28, 0, 28)
  483. x.Font = Enum.Font.SourceSansSemibold
  484. x.Text = "X"
  485. x.TextColor3 = Color3.new(1, 1, 1)
  486. x.TextSize = 30
  487.  
  488. x.MouseButton1Click:connect(function()
  489. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  490. end)
  491. end
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499. if string.find(lower,":cmds") then
  500. print("----------------COMMANDS-------------------")
  501. print("Selection options: Full Player Name, Abrreviated, Others, Silent")
  502. print("Almost all commands have silent variants.")
  503. print('Example: ":kill others"')
  504. print('Silent Example: "/e :kill others"')
  505. print('Silent Example 2: "/e kill others"')
  506. print()
  507. print(":cmds - I wonder what this does.")
  508. print(":kill PLAYERNAME - Kills the target")
  509. print(":money NUMBER - Gives you the ammount of money you specify")
  510. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
  511. print(":eventcake - Spawns the event cake in front of you.")
  512. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
  513. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
  514. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
  515. print(":credits - Shows the cool gui you saw when you executed the script.")
  516. print()
  517. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
  518. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  519. print('and the same goes for :wls, since the game is filtering enabled, however they will')
  520. print('be able to use commands if whitelisted')
  521. print('You can not be unwhitelisted or killed')
  522. print("Have fun")
  523. print("------------------------------------------")
  524. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  525. print("------------Credit to Timeless------------")
  526. print("------------------------------------------")
  527.  
  528.  
  529. end
  530.  
  531. print("----------------COMMANDS-------------------")
  532. print("Selection options: Full Player Name, Abrreviated, Others, Silent")
  533. print("Almost all commands have silent variants.")
  534. print('Example: ":kill others"')
  535. print('Silent Example: "/e :kill others"')
  536. print('Silent Example 2: "/e kill others"')
  537. print()
  538. print(":cmds - I wonder what this does.")
  539. print(":kill PLAYERNAME - Kills the target")
  540. print(":money NUMBER - Gives you the ammount of money you specify")
  541. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
  542. print(":eventcake - Spawns the event cake in front of you.")
  543. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
  544. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
  545. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
  546. print(":credits - Shows the cool gui you saw when you executed the script.")
  547. print()
  548. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
  549. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  550. print('and the same goes for :wls, since the game is filtering enabled, however they will')
  551. print('be able to use commands if whitelisted')
  552. print('You can not be unwhitelisted or killed')
  553. print("Have fun")
  554. print("------------------------------------------")
  555. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  556. print("------------Credit to Timeless------------")
  557. print("------------------------------------------")
  558.  
  559.  
  560. end
  561.  
  562. print("----------------COMMANDS-------------------")
  563. print("Selection options: Full Player Name, Abrreviated, Others, Silent")
  564. print("Almost all commands have silent variants.")
  565. print('Example: ":kill others"')
  566. print('Silent Example: "/e :kill others"')
  567. print('Silent Example 2: "/e kill others"')
  568. print()
  569. print(":cmds - I wonder what this does.")
  570. print(":kill PLAYERNAME - Kills the target")
  571. print(":money NUMBER - Gives you the ammount of money you specify")
  572. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
  573. print(":eventcake - Spawns the event cake in front of you.")
  574. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
  575. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
  576. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
  577. print(":credits - Shows the cool gui you saw when you executed the script.")
  578. print()
  579. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
  580. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  581. print('and the same goes for :wls, since the game is filtering enabled, however they will')
  582. print('be able to use commands if whitelisted')
  583. print('You can not be unwhitelisted or killed')
  584. print("Have fun")
  585. print("------------------------------------------")
  586. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  587. print("------------Credit to Timeless------------")
  588. print("------------------------------------------")
  589.  
  590. end
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597. game.Players.LocalPlayer.Chatted:connect(function(msg)
  598. adminexe(game.Players.LocalPlayer,msg)
  599. end)
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607. function start(plr)
  608.  
  609. local found = false
  610. local banned = false
  611.  
  612. for i=1,#whitelist do
  613. if plr.Name == (whitelist[i]) then
  614. found = true
  615. end
  616. end
  617.  
  618. for i=1,#banlist do
  619. if plr.Name == banlist[i] then
  620. banned = true
  621. end
  622.  
  623. if banned == true then
  624. game.Workspace.Delete.delete:FireServer(plr)
  625. end
  626. end
  627. if found == false and slock == true then
  628. game.Workspace.Delete.delete:FireServer(plr)
  629. end
  630.  
  631. if found == true then
  632. newtag(plr.Name)
  633. plr.Chatted:connect(function(msg)
  634. adminexe(plr,msg)
  635. end)
  636. end
  637. end
  638. game.Players.PlayerAdded:connect(function(plr)
  639. start(plr)
  640. end)
  641.  
  642.  
  643. local creditsdab = Instance.new("ScreenGui")
  644. local Frame = Instance.new("Frame")
  645. local aidez = Instance.new("ImageLabel")
  646. local names = Instance.new("TextLabel")
  647. local scriptmadeby = Instance.new("TextLabel")
  648. local scriptmadeby_2 = Instance.new("TextLabel")
  649. local x = Instance.new("TextButton")
  650.  
  651. creditsdab.Name = "creditsdab"
  652. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  653.  
  654. Frame.Parent = creditsdab
  655. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  656. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  657. Frame.Size = UDim2.new(0, 274, 0, 274)
  658.  
  659. aidez.Name = "aidez"
  660. aidez.Parent = Frame
  661. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  662. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  663. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  664. aidez.Size = UDim2.new(0, 274, 0, 274)
  665. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  666.  
  667. names.Name = "names"
  668. names.Parent = Frame
  669. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  670. names.BackgroundTransparency = 0.30000001192093
  671. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  672. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  673. names.Size = UDim2.new(0, 274, 0, 28)
  674. names.Font = Enum.Font.SourceSans
  675. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  676. names.TextColor3 = Color3.new(1, 1, 1)
  677. names.TextSize = 14
  678.  
  679. scriptmadeby.Name = "scriptmadeby"
  680. scriptmadeby.Parent = Frame
  681. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  682. scriptmadeby.BackgroundTransparency = 0.30000001192093
  683. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  684. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  685. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  686. scriptmadeby.Font = Enum.Font.SourceSans
  687. scriptmadeby.Text = "Script made by"
  688. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  689. scriptmadeby.TextSize = 14
  690.  
  691. scriptmadeby_2.Name = "scriptmadeby"
  692. scriptmadeby_2.Parent = Frame
  693. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  694. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  695. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  696. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  697. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  698. scriptmadeby_2.Font = Enum.Font.SourceSans
  699. scriptmadeby_2.Text = "Check the dev console for a list of commands! (F9 or Shift + F9)"
  700. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  701. scriptmadeby_2.TextScaled = true
  702. scriptmadeby_2.TextSize = 14
  703. scriptmadeby_2.TextWrapped = true
  704.  
  705. x.Name = "x"
  706. x.Parent = creditsdab
  707. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  708. x.BackgroundTransparency = 0.30000001192093
  709. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  710. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  711. x.Size = UDim2.new(0, 28, 0, 28)
  712. x.Font = Enum.Font.SourceSansSemibold
  713. x.Text = "X"
  714. x.TextColor3 = Color3.new(1, 1, 1)
  715. x.TextSize = 30
  716.  
  717. x.MouseButton1Click:connect(function()
  718. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  719. end)
  720.  
  721.  
  722. print("----------------COMMANDS-------------------")
  723. print("Selection options: Full Player Name, Abrreviated, Others, Silent")
  724. print("Almost all commands have silent variants.")
  725. print('Example: ":kill others"')
  726. print('Silent Example: "/e :kill others"')
  727. print('Silent Example 2: "/e kill others"')
  728. print()
  729. print(":cmds - I wonder what this does.")
  730. print(":kill PLAYERNAME - Kills the target")
  731. print(":deletetool - A tool that sends parts to infinity and beyond")
  732. print(":banish PLAYERNAME - Sends players to infinity and beyond.")
  733. print(":money NUMBER - Gives you the ammount of money you specify")
  734. print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
  735. print(":eventcake - Spawns the event cake in front of you.")
  736. print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
  737. print(":decalspam IMAGEID - Replaces any decals in the game with an image of your choice.")
  738. print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
  739. print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
  740. print(":credits - Shows the cool gui you saw when you executed the script.")
  741. print()
  742. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
  743. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  744. print('and the same goes for :wls, since the game is filtering enabled, however they will')
  745. print('be able to use commands if whitelisted')
  746. print('You can not be unwhitelisted or killed')
  747. print("Have fun")
  748. print("------------------------------------------")
  749. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  750. print("------------Credit to Timeless------------")
  751. print("------------------------------------------")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement