Advertisement
Guest User

Fe Admin

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