Advertisement
boboh

Untitled

Oct 19th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 55.77 KB | None | 0 0
  1. wait(.2)
  2. whitelist = {game.Players.LocalPlayer.Name,"Fren1","Fren2"} -- put admin names here
  3. banlist = {"noob","noob2"} -- put noob names here
  4. deletepath = game.Players.LocalPlayer.Character:FindFirstChild("Delete")
  5. deletepath2 = game.Players.LocalPlayer.Backpack:FindFirstChild("Delete")
  6. slock = false
  7.  
  8. function newtag(plr)
  9. admintag = Instance.new("BoolValue")
  10. admintag.Parent = game.Players[plr]
  11. admintag.Value = true
  12. admintag.Name = "admin"
  13. print("created admin tag for " .. plr)
  14. end
  15.  
  16. function newsuc(plr)
  17. admintag = Instance.new("BoolValue")
  18. admintag.Parent = game.Players[plr]
  19. admintag.Value = true
  20. admintag.Name = "suc"
  21. print("loopkilling " .. plr)
  22. end
  23.  
  24. newtag(game.Players.LocalPlayer.Name)
  25.  
  26. game.Players.LocalPlayer.ChildRemoved:connect(function(obj)
  27. if obj.Name == "admin" then
  28. newtag(game.Players.LocalPlayer.Name)
  29. end
  30. end)
  31.  
  32. function adminexe(plr,msg)
  33. if plr:FindFirstChild("admin") then
  34.  
  35. local lower = string.lower(msg)
  36. local len = string.len(lower)
  37.  
  38. if string.find(lower,";kick ") then
  39. local name = string.gsub(lower,";kick ","")
  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.axe:FireServer(v)
  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.axe:FireServer(player)
  60. end
  61. end
  62. end
  63. end
  64. end
  65.  
  66.  
  67. if string.find(lower,"/e ;kick ") then
  68. local name = string.gsub(lower,"/e ;kick ","")
  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.axe:FireServer(v)
  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.axe:FireServer(player)
  89. end
  90. end
  91. end
  92. end
  93. end
  94.  
  95. if string.find(lower,"/e kick ") then
  96. local name = string.gsub(lower,"/e kick ","")
  97. local player = nil
  98.  
  99. if name == "others" then
  100. for i,v in pairs(game.Players:GetChildren()) do
  101. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  102. game.ReplicatedStorage.axe:FireServer(v)
  103. end
  104. end
  105. else
  106.  
  107. names = game.Players:GetChildren()
  108.  
  109. for i,v in pairs(names) do
  110. strlower = string.lower(v.Name)
  111. sub = string.sub(strlower,1,#name)
  112.  
  113. if name == sub then
  114. player = v
  115. if player.Name ~= game.Players.LocalPlayer.Name then
  116. game.ReplicatedStorage.axe:FireServer(player)
  117. end
  118. end
  119. end
  120. end
  121. end
  122.  
  123.  
  124.  
  125. if string.find(lower,";loopkill ") then
  126. local name = string.gsub(lower,";loopkill ","")
  127. local player = nil
  128.  
  129. if name == "others" then
  130. for i,v in pairs(game.Players:GetChildren()) do
  131. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  132.  
  133. if v:FindFirstChild("suc") then
  134. v.suc:Destroy()
  135. end
  136.  
  137. newsuc(v.Name)
  138. while v:FindFirstChild("suc") do
  139. wait(0.00000001)
  140. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  141. end
  142. end
  143. end
  144. else
  145.  
  146. names = game.Players:GetChildren()
  147.  
  148. for i,v in pairs(names) do
  149. strlower = string.lower(v.Name)
  150. sub = string.sub(strlower,1,#name)
  151.  
  152. if name == sub then
  153. player = v
  154. if player.Name ~= game.Players.LocalPlayer.Name then
  155.  
  156.  
  157. if player:FindFirstChild("suc") then
  158. player.suc:Destroy()
  159. end
  160.  
  161. newsuc(player.Name)
  162. while player:FindFirstChild("suc") do
  163. wait(0.00000001)
  164. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  165. end
  166. end
  167. end
  168. end
  169. end
  170. end
  171.  
  172.  
  173.  
  174.  
  175.  
  176. if string.find(lower,";unloopkill ") then
  177. local name = string.gsub(lower,";unloopkill ","")
  178. local player = nil
  179.  
  180. if name == "others" then
  181. for i,v in pairs(game.Players:GetChildren()) do
  182. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  183.  
  184. if v:FindFirstChild("suc") then
  185. v.suc:Destroy()
  186. end
  187.  
  188.  
  189.  
  190. end
  191. end
  192. else
  193.  
  194. names = game.Players:GetChildren()
  195.  
  196. for i,v in pairs(names) do
  197. strlower = string.lower(v.Name)
  198. sub = string.sub(strlower,1,#name)
  199.  
  200. if name == sub then
  201. player = v
  202. if player.Name ~= game.Players.LocalPlayer.Name then
  203.  
  204.  
  205. if player:FindFirstChild("suc") then
  206. player.suc:Destroy()
  207. end
  208.  
  209. end
  210. end
  211. end
  212. end
  213. end
  214.  
  215.  
  216.  
  217. if string.find(lower,"/e ;infkill ") then
  218. local name = string.gsub(lower,"/e ;infkill ","")
  219. local player = nil
  220.  
  221. if name == "others" then
  222. for i,v in pairs(game.Players:GetChildren()) do
  223. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  224. for i = 1, 1000000000000000000000000000000000000 do
  225. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  226. wait(0.000000000000001)
  227. end -- nice little for loop here
  228.  
  229. end
  230. end
  231. else
  232.  
  233. names = game.Players:GetChildren()
  234.  
  235. for i,v in pairs(names) do
  236. strlower = string.lower(v.Name)
  237. sub = string.sub(strlower,1,#name)
  238.  
  239. if name == sub then
  240. player = v
  241. if player.Name ~= game.Players.LocalPlayer.Name then
  242. for i = 1, 1000000000000000000000000000000000000 do
  243. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  244. wait(0.000000000000001)
  245. end -- nice little for loop here
  246. end
  247. end
  248. end
  249. end
  250. end
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261. if string.find(lower,";punish ") then
  262. local name = string.gsub(lower,";punish ","")
  263. local player = nil
  264.  
  265. if name == "others" then
  266. for i,v in pairs(game.Players:GetChildren()) do
  267. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  268. game.ReplicatedStorage.axe:FireServer(v.Character)
  269. end
  270. end
  271. else
  272.  
  273. names = game.Players:GetChildren()
  274.  
  275. for i,v in pairs(names) do
  276. strlower = string.lower(v.Name)
  277. sub = string.sub(strlower,1,#name)
  278.  
  279. if name == sub then
  280. player = v
  281. if player.Name ~= game.Players.LocalPlayer.Name then
  282. game.ReplicatedStorage.axe:FireServer(player.Character)
  283. end
  284. end
  285. end
  286. end
  287. end
  288.  
  289.  
  290.  
  291. if string.find(lower,"/e punish ") then
  292. local name = string.gsub(lower,"/e punish ","")
  293. local player = nil
  294.  
  295. if name == "others" then
  296. for i,v in pairs(game.Players:GetChildren()) do
  297. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  298. game.ReplicatedStorage.axe:FireServer(v.Character)
  299. end
  300. end
  301. else
  302.  
  303. names = game.Players:GetChildren()
  304.  
  305. for i,v in pairs(names) do
  306. strlower = string.lower(v.Name)
  307. sub = string.sub(strlower,1,#name)
  308.  
  309. if name == sub then
  310. player = v
  311. if player.Name ~= game.Players.LocalPlayer.Name then
  312. game.ReplicatedStorage.axe:FireServer(player.Character)
  313. end
  314. end
  315. end
  316. end
  317. end
  318.  
  319. if string.find(lower,"/e ;punish ") then
  320. local name = string.gsub(lower,"/e ;punish ","")
  321. local player = nil
  322.  
  323. if name == "others" then
  324. for i,v in pairs(game.Players:GetChildren()) do
  325. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  326. game.ReplicatedStorage.axe:FireServer(v.Character)
  327. end
  328. end
  329. else
  330.  
  331. names = game.Players:GetChildren()
  332.  
  333. for i,v in pairs(names) do
  334. strlower = string.lower(v.Name)
  335. sub = string.sub(strlower,1,#name)
  336.  
  337. if name == sub then
  338. player = v
  339. if player.Name ~= game.Players.LocalPlayer.Name then
  340. game.ReplicatedStorage.axe:FireServer(player.Character)
  341. end
  342. end
  343. end
  344. end
  345. end
  346.  
  347. if string.find(lower,";kill ") then
  348. local name = string.gsub(lower,";kill ","")
  349. local player = nil
  350.  
  351. if name == "others" then
  352. for i,v in pairs(game.Players:GetChildren()) do
  353. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  354. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  355. end
  356. end
  357. else
  358.  
  359. names = game.Players:GetChildren()
  360.  
  361. for i,v in pairs(names) do
  362. strlower = string.lower(v.Name)
  363. sub = string.sub(strlower,1,#name)
  364.  
  365. if name == sub then
  366. player = v
  367. if player.Name ~= game.Players.LocalPlayer.Name then
  368. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  369. end
  370. end
  371. end
  372. end
  373. end
  374.  
  375. if string.find(lower,"/e kill ") then
  376. local name = string.gsub(lower,"/e kill ","")
  377. local player = nil
  378.  
  379. if name == "others" then
  380. for i,v in pairs(game.Players:GetChildren()) do
  381. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  382. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  383.  
  384. end
  385. end
  386. else
  387.  
  388. names = game.Players:GetChildren()
  389.  
  390. for i,v in pairs(names) do
  391. strlower = string.lower(v.Name)
  392. sub = string.sub(strlower,1,#name)
  393.  
  394. if name == sub then
  395. player = v
  396. if player.Name ~= game.Players.LocalPlayer.Name then
  397. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  398.  
  399. end
  400. end
  401. end
  402. end
  403. end
  404.  
  405. if string.find(lower,"/e ;kill ") then
  406. local name = string.gsub(lower,"/e ;kill ","")
  407. local player = nil
  408.  
  409. if name == "others" then
  410. for i,v in pairs(game.Players:GetChildren()) do
  411. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  412. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  413.  
  414. end
  415. end
  416. else
  417.  
  418. names = game.Players:GetChildren()
  419.  
  420. for i,v in pairs(names) do
  421. strlower = string.lower(v.Name)
  422. sub = string.sub(strlower,1,#name)
  423.  
  424. if name == sub then
  425. player = v
  426. if player.Name ~= game.Players.LocalPlayer.Name then
  427. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  428.  
  429. end
  430. end
  431. end
  432. end
  433. end
  434.  
  435.  
  436. if string.find(lower,";kill ") then
  437. local name = string.gsub(lower,";kill ","")
  438. local player = nil
  439.  
  440. if name == "others" then
  441. for i,v in pairs(game.Players:GetChildren()) do
  442. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  443. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  444. end
  445. end
  446. else
  447.  
  448. names = game.Players:GetChildren()
  449.  
  450. for i,v in pairs(names) do
  451. strlower = string.lower(v.Name)
  452. sub = string.sub(strlower,1,#name)
  453.  
  454. if name == sub then
  455. player = v
  456. if player.Name ~= game.Players.LocalPlayer.Name then
  457. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  458. end
  459. end
  460. end
  461. end
  462. end
  463.  
  464. if string.find(lower,"/e kill ") then
  465. local name = string.gsub(lower,"/e kill ","")
  466. local player = nil
  467.  
  468. if name == "others" then
  469. for i,v in pairs(game.Players:GetChildren()) do
  470. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  471. game.ReplicatedStorage.axe:FireServer(v.Character.Torso.Neck)
  472.  
  473. end
  474. end
  475. else
  476.  
  477. names = game.Players:GetChildren()
  478.  
  479. for i,v in pairs(names) do
  480. strlower = string.lower(v.Name)
  481. sub = string.sub(strlower,1,#name)
  482.  
  483. if name == sub then
  484. player = v
  485. if player.Name ~= game.Players.LocalPlayer.Name then
  486. game.ReplicatedStorage.axe:FireServer(player.Character.Torso.Neck)
  487.  
  488. end
  489. end
  490. end
  491. end
  492. end
  493.  
  494.  
  495.  
  496. if string.find(lower,";naked ") then
  497. local name = string.gsub(lower,";naked ","")
  498. local player = nil
  499.  
  500. if name == "others" then
  501. for i,v in pairs(game.Players:GetChildren()) do
  502. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  503.  
  504.  
  505. if v.Character:FindFirstChild("Shirt") then
  506. game.ReplicatedStorage.axe:FireServer(v.Character.Shirt)
  507. end
  508. if v.Character:FindFirstChild("Pants") then
  509. game.ReplicatedStorage.axe:FireServer(v.Character.Pants)
  510. end
  511. end
  512. end
  513. else
  514.  
  515. names = game.Players:GetChildren()
  516.  
  517. for i,v in pairs(names) do
  518. strlower = string.lower(v.Name)
  519. sub = string.sub(strlower,1,#name)
  520.  
  521. if name == sub then
  522. player = v
  523. if player.Name ~= game.Players.LocalPlayer.Name then
  524. if player.Character:FindFirstChild("Shirt") then
  525. game.ReplicatedStorage.axe:FireServer(player.Character.Shirt)
  526. end
  527. if player.Character:FindFirstChild("Pants") then
  528. game.ReplicatedStorage.axe:FireServer(player.Character.Pants)
  529. end
  530.  
  531. end
  532. end
  533. end
  534. end
  535. end
  536.  
  537.  
  538. if string.find(lower,";rhum ") then
  539. local name = string.gsub(lower,";rhum ","")
  540. local player = nil
  541.  
  542. if name == "others" then
  543. for i,v in pairs(game.Players:GetChildren()) do
  544. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  545.  
  546.  
  547. if v.Character:FindFirstChild("Humanoid") then
  548. game.ReplicatedStorage.axe:FireServer(v.Character.Humanoid)
  549. end
  550. end
  551. end
  552. else
  553.  
  554. names = game.Players:GetChildren()
  555.  
  556. for i,v in pairs(names) do
  557. strlower = string.lower(v.Name)
  558. sub = string.sub(strlower,1,#name)
  559.  
  560. if name == sub then
  561. player = v
  562. if player.Name ~= game.Players.LocalPlayer.Name then
  563. if player.Character:FindFirstChild("Humanoid") then
  564. game.ReplicatedStorage.axe:FireServer(player.Character.Humanoid)
  565. end
  566.  
  567. end
  568. end
  569. end
  570. end
  571. end
  572.  
  573. if string.find(lower,";removetools ") then
  574. local name = string.gsub(lower,";removetools ","")
  575. local player = nil
  576.  
  577. if name == "others" then
  578. for i,v in pairs(game.Players:GetChildren()) do
  579. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  580. for _,x in pairs(v.Backpack:GetChildren()) do
  581. if (x:IsA("Tool")) then
  582. game.ReplicatedStorage.axe:FireServer(x)
  583. end
  584. end
  585.  
  586. end
  587. end
  588. else
  589.  
  590. names = game.Players:GetChildren()
  591.  
  592. for i,v in pairs(names) do
  593. strlower = string.lower(v.Name)
  594. sub = string.sub(strlower,1,#name)
  595.  
  596. if name == sub then
  597. player = v
  598. if player.Name ~= game.Players.LocalPlayer.Name then
  599. for _,x in pairs(player.Backpack:GetChildren()) do
  600. if (x:IsA("Tool")) then
  601. game.ReplicatedStorage.axe:FireServer(x)
  602. end
  603. end
  604.  
  605. end
  606. end
  607. end
  608. end
  609. end
  610.  
  611.  
  612.  
  613. if string.find(lower,";ban ") then
  614. local name = string.gsub(lower,";ban ","")
  615. local player = nil
  616. local plrname = nil
  617.  
  618. if name == "others" then
  619. for i,v in pairs(game.Players:GetChildren()) do
  620. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  621. plrname = v.Name
  622. table.insert(banlist,(#banlist+1),plrname)
  623. game.ReplicatedStorage.axe:FireServer(v)
  624. end
  625. end
  626. else
  627.  
  628. names = game.Players:GetChildren()
  629.  
  630. for i,v in pairs(names) do
  631. strlower = string.lower(v.Name)
  632. sub = string.sub(strlower,1,#name)
  633.  
  634. if name == sub then
  635. plrname = v.Name
  636. player = v
  637.  
  638. if player.Name ~= game.Players.LocalPlayer.Name then
  639. table.insert(banlist,(#banlist+1),plrname)
  640. game.ReplicatedStorage.axe:FireServer(player)
  641. end
  642. end
  643.  
  644. end
  645.  
  646.  
  647. end
  648. end
  649.  
  650. if string.find(lower,"/e ban ") then
  651. local name = string.gsub(lower,"/e ban ","")
  652. local player = nil
  653. local plrname = nil
  654.  
  655. if name == "others" then
  656. for i,v in pairs(game.Players:GetChildren()) do
  657. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  658. plrname = v.Name
  659. table.insert(banlist,(#banlist+1),plrname)
  660. game.ReplicatedStorage.axe:FireServer(v)
  661. end
  662. end
  663. else
  664.  
  665. names = game.Players:GetChildren()
  666.  
  667. for i,v in pairs(names) do
  668. strlower = string.lower(v.Name)
  669. sub = string.sub(strlower,1,#name)
  670.  
  671. if name == sub then
  672. plrname = v.Name
  673. player = v
  674.  
  675. if player.Name ~= game.Players.LocalPlayer.Name then
  676. table.insert(banlist,(#banlist+1),plrname)
  677. game.ReplicatedStorage.axe:FireServer(player)
  678. end
  679. end
  680.  
  681. end
  682.  
  683.  
  684. end
  685. end
  686.  
  687. if string.find(lower,"/e ;ban ") then
  688. local name = string.gsub(lower,"/e ;ban ","")
  689. local player = nil
  690. local plrname = nil
  691.  
  692. if name == "others" then
  693. for i,v in pairs(game.Players:GetChildren()) do
  694. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  695. plrname = v.Name
  696. table.insert(banlist,(#banlist+1),plrname)
  697. game.ReplicatedStorage.axe:FireServer(v)
  698. end
  699. end
  700. else
  701.  
  702. names = game.Players:GetChildren()
  703.  
  704. for i,v in pairs(names) do
  705. strlower = string.lower(v.Name)
  706. sub = string.sub(strlower,1,#name)
  707.  
  708. if name == sub then
  709. plrname = v.Name
  710. player = v
  711.  
  712. if player.Name ~= game.Players.LocalPlayer.Name then
  713. table.insert(banlist,(#banlist+1),plrname)
  714. game.ReplicatedStorage.axe:FireServer(player)
  715. end
  716. end
  717.  
  718. end
  719.  
  720.  
  721. end
  722. end
  723.  
  724. if string.find(lower,";unban ") then
  725. local name = string.gsub(lower,";unban ","")
  726. local player = nil
  727. local plrname = nil
  728. local index = nil
  729.  
  730. if name == "all" then
  731.  
  732. for i,v in pairs(banlist) do
  733. table.remove(banlist,i)
  734. end
  735.  
  736. else
  737. names = banlist
  738.  
  739. for i,v in pairs(names) do
  740. strlower = string.lower(v)
  741. sub = string.sub(strlower,1,#name)
  742.  
  743. if name == sub then
  744. table.remove(banlist,i)
  745. end
  746. end
  747. end
  748. end
  749.  
  750. if lower == ";bans" then
  751. print("-------------------------")
  752.  
  753. for i,v in pairs(banlist) do
  754. print("Ban #" .. i .. " Player: " .. v)
  755. end
  756.  
  757. print("-------------------------")
  758. end
  759.  
  760.  
  761.  
  762.  
  763. if lower == ";slock on" then
  764. slock = true
  765. end
  766.  
  767. if lower == "/e ;slock on" then
  768. slock = true
  769. end
  770.  
  771. if lower == "/e slock on" then
  772. slock = true
  773. end
  774.  
  775. if lower == ";slock off" then
  776. slock = false
  777. end
  778.  
  779. if lower == "/e ;slock off" then
  780. slock = false
  781. end
  782.  
  783. if lower == "/e slock off" then
  784. slock = false
  785. end
  786.  
  787. if string.find(lower,";wl ") then
  788. local name = string.gsub(lower,";wl ","")
  789. local player = nil
  790. local plrname = nil
  791.  
  792. if name == "others" then
  793. for i,v in pairs(game.Players:GetChildren()) do
  794. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  795. table.insert(whitelist,(#whitelist+1),v.Name)
  796. newtag(v.Name)
  797.  
  798. v.Chatted:connect(function(msg)
  799. adminexe(v,msg)
  800. end)
  801. end
  802. end
  803. else
  804.  
  805. names = game.Players:GetChildren()
  806.  
  807. for i,v in pairs(names) do
  808. strlower = string.lower(v.Name)
  809. sub = string.sub(strlower,1,#name)
  810.  
  811. if name == sub then
  812. newtag(v.Name)
  813. table.insert(whitelist,(#whitelist+1),v.Name)
  814.  
  815. v.Chatted:connect(function(msg)
  816. adminexe(v,msg)
  817. end)
  818. end
  819. end
  820. end
  821. end
  822.  
  823. if string.find(lower,";unwl ") then
  824. local name = string.gsub(lower,";unwl ","")
  825. local player = nil
  826. local plrname = nil
  827. local index = nil
  828.  
  829. if name == "others" then
  830. for i,v in pairs(whitelist) do
  831. for i,v in pairs(banlist) do
  832. if v ~= game.Players.LocalPlayer.Name then
  833. table.remove(whitelist,i)
  834. end
  835. end
  836.  
  837. if game.Workspace:FindFirstChild(v) then
  838.  
  839. if v.Name ~= game.Players.LocalPlayer.Name then
  840. if v:FindFirstChild("admin") then
  841. v.admin:Destroy()
  842. end
  843. end
  844. end
  845. end
  846. else
  847. names = whitelist
  848.  
  849. for i,v in pairs(names) do
  850. strlower = string.lower(v)
  851. sub = string.sub(strlower,1,#name)
  852.  
  853. if name == sub then
  854. table.remove(whitelist,i)
  855. end
  856. end
  857. end
  858. end
  859.  
  860. if lower == ";wls" then
  861. for i,v in pairs(whitelist) do
  862. print("Player #" .. i .. " Player: " .. v)
  863. end
  864. end
  865.  
  866. if string.find(lower,";cashme ") then
  867. local name = string.gsub(lower,";cashme ","")
  868. local player = nil
  869.  
  870. game.ReplicatedStorage.Events.CrateClaim:FireServer("Cash", name)
  871.  
  872. end
  873.  
  874.  
  875.  
  876.  
  877. if lower == ";unlock" then
  878. local function unlock(instance)
  879. for i,v in pairs(instance:GetChildren()) do
  880. if v:IsA("BasePart") then
  881. v.Locked = false
  882. end
  883. unlock(v)
  884. end
  885. end
  886. unlock(workspace)
  887. end
  888.  
  889. if lower == "/e unlock" then
  890. local function unlock(instance)
  891. for i,v in pairs(instance:GetChildren()) do
  892. if v:IsA("BasePart") then
  893. v.Locked = false
  894. end
  895. unlock(v)
  896. end
  897. end
  898. unlock(workspace)
  899. end
  900.  
  901. if lower == "/e ;unlock" then
  902. local function unlock(instance)
  903. for i,v in pairs(instance:GetChildren()) do
  904. if v:IsA("BasePart") then
  905. v.Locked = false
  906. end
  907. unlock(v)
  908. end
  909. end
  910. unlock(workspace)
  911. end
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919. if lower == ";clear" then
  920. for i,v in pairs(game.Workspace:GetChildren()) do
  921. if not v:IsA("Model") or not v:IsA("Camera") or not v:IsA("Terrain") then
  922. game.ReplicatedStorage.axe:FireServer(v)
  923. end
  924. end
  925. end
  926.  
  927. if lower == ";breakgame" then
  928. for i,v in pairs(game.Workspace:GetChildren()) do
  929. if not v:IsA("Model") or not v:IsA("Camera") or not v:IsA("Terrain") then
  930. game.ReplicatedStorage.axe:FireServer(v)
  931. end
  932. end
  933. end
  934.  
  935. if lower == ";removegame" then
  936. for i,v in pairs(game.Workspace:GetChildren()) do
  937. if not v:IsA("Model") or not v:IsA("Camera") or not v:IsA("Terrain") then
  938. game.ReplicatedStorage.axe:FireServer(v)
  939. end
  940. end
  941. end
  942. if lower == ";deletetool" then
  943. local cunt = Instance.new("Tool")
  944. local biggercunt = Instance.new("Part")
  945. local plr = game.Players.LocalPlayer
  946. local tar_obj = nil
  947. local rekt = game.ReplicatedStorage.axe
  948. biggercunt.Parent = cunt
  949. biggercunt.Size = Vector3.new(0.2, 0.2, 0.2)
  950. cunt.Parent = plr.Backpack
  951. cunt.Name = "Delete"
  952. biggercunt.Name = "Handle"
  953. cunt.Equipped:Connect(function(m_S)
  954. print("m")
  955.  
  956. m_S.Button1Down:Connect(function()
  957. print("M")
  958.  
  959. tar_obj = m_S.Target
  960.  
  961. rekt:FireServer(tar_obj)
  962.  
  963. end)
  964. end)
  965. end
  966.  
  967.  
  968.  
  969.  
  970. if lower == "/e deletetool" then
  971. local cunt = Instance.new("Tool")
  972. local biggercunt = Instance.new("Part")
  973. local plr = game.Players.LocalPlayer
  974. local tar_obj = nil
  975. local rekt = game.ReplicatedStorage.axe
  976. biggercunt.Parent = cunt
  977. biggercunt.Size = Vector3.new(0.2, 0.2, 0.2)
  978. cunt.Parent = plr.Backpack
  979. cunt.Name = "Delete"
  980. biggercunt.Name = "Handle"
  981. cunt.Equipped:Connect(function(m_S)
  982. print("m")
  983.  
  984. m_S.Button1Down:Connect(function()
  985. print("M")
  986.  
  987. tar_obj = m_S.Target
  988.  
  989. rekt:FireServer(tar_obj)
  990.  
  991. end)
  992. end)
  993. end
  994.  
  995.  
  996.  
  997.  
  998. if lower == "/e ;deletetool" then
  999. local cunt = Instance.new("Tool")
  1000. local biggercunt = Instance.new("Part")
  1001. local plr = game.Players.LocalPlayer
  1002. local tar_obj = nil
  1003. local rekt = game.ReplicatedStorage.axe
  1004. biggercunt.Parent = cunt
  1005. biggercunt.Size = Vector3.new(0.2, 0.2, 0.2)
  1006. cunt.Parent = plr.Backpack
  1007. cunt.Name = "Delete"
  1008. biggercunt.Name = "Handle"
  1009. cunt.Equipped:Connect(function(m_S)
  1010. print("m")
  1011.  
  1012. m_S.Button1Down:Connect(function()
  1013. print("M")
  1014.  
  1015. tar_obj = m_S.Target
  1016.  
  1017. rekt:FireServer(tar_obj)
  1018.  
  1019. end)
  1020. end)
  1021. end
  1022. if string.find(lower,";cmds") then
  1023.  
  1024. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  1025. Text = "Check the developer console for a list of additional commands. (F9 or Shift + F9)";
  1026. Color = Color3.new(127, 0, 0);
  1027. Font = Enum.Font.SourceSansBold;
  1028. FontSize = Enum.FontSize.Size24;
  1029. })
  1030.  
  1031.  
  1032. print("----------------COMMANDS-------------------")
  1033. print("Selection options: Full Player Name, Abrreviated, Others")
  1034. print('Example: ";ban others"')
  1035. print()
  1036. print(";cmds - I wonder what this does.")
  1037. print(";ban - Prevents user from rejoining the server.")
  1038. print(";unban - Unbans the target")
  1039. print(";bans - Shows bans in console")
  1040. print(";slock on - Turns serverlock on")
  1041. print(";slock off - Turns server lock off")
  1042. print(";kick - Removes target from the game (/e :kick and /e kick work)")
  1043. print(";wl - Whitelists the target (Can use commands, not on you though.)")
  1044. print(";unwl - Unwhitelists the target")
  1045. print(";wls -outputs whitelisted players to console (F9)")
  1046. print(";cashme - Gives you cash)")
  1047. print(";deletetool - Gives you a delete tool. (Full credit goes to Shootingisgood9 for this one)")
  1048. print(";clear - Removes everything in the workspace. (:removegame and :breakgame have the same effect)")
  1049. print(";breakgame - Breaks everything. (:removegame also works incase you got used to the remove commands.)")
  1050. print(";kill - Kills the target")
  1051. print(";punish - Deletes the target's character")
  1052. print(";unlock - Unlocks the workspace.")
  1053. print(";loopkill - Loopkills the target (Sometimes randomly stop)")
  1054. print(";unloopkill - Unloopkills the target")
  1055. print(";infkill - Loopkills the target, but it doesn't stop. Like at all. Ever.")
  1056. print(";rhum - Removes the target's humanoid. (Essentially turns them into a statue)")
  1057. print(";naked - Removes the targets's clothes. (echii)")
  1058. print(";removetools - Removes the target's tools")
  1059. print()
  1060. print('Executing "kick others/etc." wont kick those whitelisted, but if you single them out it will')
  1061. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  1062. print('and the same goes for :bans and :wls, since the game is filtering enabled, however they will')
  1063. print('be able to use commands if whitelisted')
  1064. print('You can not be unwhitelisted or banned / kicked')
  1065. print("If someone uses the clear / clr command, you must re-apply the script.")
  1066. print("Most commands that effect players can be used silently. (Example /e :kick and /e kick would both work)")
  1067. print("------------------------------------------")
  1068. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  1069. print("------------Credit to Timeless------------")
  1070. print("------------------------------------------")
  1071.  
  1072.  
  1073. end
  1074.  
  1075.  
  1076. if string.find(lower,"/e cmds") then
  1077.  
  1078. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  1079. Text = "Check the developer console for a list of additional commands. (F9 or Shift + F9)";
  1080. Color = Color3.new(127, 0, 0);
  1081. Font = Enum.Font.SourceSansBold;
  1082. FontSize = Enum.FontSize.Size24;
  1083. })
  1084.  
  1085.  
  1086. print("----------------COMMANDS-------------------")
  1087. print("Selection options: Full Player Name, Abrreviated, Others")
  1088. print('Example: ";ban others"')
  1089. print()
  1090. print(";cmds - I wonder what this does.")
  1091. print(";ban - Prevents user from rejoining the server.")
  1092. print(";unban - Unbans the target")
  1093. print(";bans - Shows bans in console")
  1094. print(";slock on - Turns serverlock on")
  1095. print(";slock off - Turns server lock off")
  1096. print(";kick - Removes target from the game (/e :kick and /e kick work)")
  1097. print(";wl - Whitelists the target (Can use commands, not on you though.)")
  1098. print(";unwl - Unwhitelists the target")
  1099. print(";wls -outputs whitelisted players to console (F9)")
  1100. print(";cashme - Gives you cash)")
  1101. print(";deletetool - Gives you a delete tool. (Full credit goes to Shootingisgood9 for this one)")
  1102. print(";clear - Removes everything in the workspace. (:removegame and :breakgame have the same effect)")
  1103. print(";breakgame - Breaks everything. (:removegame also works incase you got used to the remove commands.)")
  1104. print(";kill - Kills the target")
  1105. print(";punish - Deletes the target's character")
  1106. print(";unlock - Unlocks the workspace.")
  1107. print(";loopkill - Loopkills the target (Sometimes randomly stop)")
  1108. print(";unloopkill - Unloopkills the target")
  1109. print(";infkill - Loopkills the target, but it doesn't stop. Like at all. Ever.")
  1110. print(";rhum - Removes the target's humanoid. (Essentially turns them into a statue)")
  1111. print(";naked - Removes the targets's clothes. (echii)")
  1112. print(";removetools - Removes the target's tools")
  1113. print()
  1114. print('Executing "kick others/etc." wont kick those whitelisted, but if you single them out it will')
  1115. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  1116. print('and the same goes for :bans and :wls, since the game is filtering enabled, however they will')
  1117. print('be able to use commands if whitelisted')
  1118. print('You can not be unwhitelisted or banned / kicked')
  1119. print("If someone uses the clear / clr command, you must re-apply the script.")
  1120. print("Most commands that effect players can be used silently. (Example /e :kick and /e kick would both work)")
  1121. print("------------------------------------------")
  1122. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  1123. print("------------Credit to Timeless------------")
  1124. print("------------------------------------------")
  1125.  
  1126.  
  1127. end
  1128.  
  1129.  
  1130.  
  1131. if string.find(lower,"/e ;cmds") then
  1132.  
  1133. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  1134. Text = "Check the developer console for a list of additional commands. (F9 or Shift + F9)";
  1135. Color = Color3.new(127, 0, 0);
  1136. Font = Enum.Font.SourceSansBold;
  1137. FontSize = Enum.FontSize.Size24;
  1138. })
  1139.  
  1140.  
  1141. print("----------------COMMANDS-------------------")
  1142. print("Selection options: Full Player Name, Abrreviated, Others")
  1143. print('Example: ";ban others"')
  1144. print()
  1145. print(";cmds - I wonder what this does.")
  1146. print(";ban - Prevents user from rejoining the server.")
  1147. print(";unban - Unbans the target")
  1148. print(";bans - Shows bans in console")
  1149. print(";slock on - Turns serverlock on")
  1150. print(";slock off - Turns server lock off")
  1151. print(";kick - Removes target from the game (/e :kick and /e kick work)")
  1152. print(";wl - Whitelists the target (Can use commands, not on you though.)")
  1153. print(";unwl - Unwhitelists the target")
  1154. print(";wls -outputs whitelisted players to console (F9)")
  1155. print(";cashme - Gives you cash)")
  1156. print(";deletetool - Gives you a delete tool. (Full credit goes to Shootingisgood9 for this one)")
  1157. print(";clear - Removes everything in the workspace. (:removegame and :breakgame have the same effect)")
  1158. print(";breakgame - Breaks everything. (:removegame also works incase you got used to the remove commands.)")
  1159. print(";kill - Kills the target")
  1160. print(";punish - Deletes the target's character")
  1161. print(";unlock - Unlocks the workspace.")
  1162. print(";loopkill - Loopkills the target (Sometimes randomly stop)")
  1163. print(";unloopkill - Unloopkills the target")
  1164. print(";infkill - Loopkills the target, but it doesn't stop. Like at all. Ever.")
  1165. print(";rhum - Removes the target's humanoid. (Essentially turns them into a statue)")
  1166. print(";naked - Removes the targets's clothes. (echii)")
  1167. print(";removetools - Removes the target's tools")
  1168. print()
  1169. print('Executing "kick others/etc." wont kick those whitelisted, but if you single them out it will')
  1170. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  1171. print('and the same goes for :bans and :wls, since the game is filtering enabled, however they will')
  1172. print('be able to use commands if whitelisted')
  1173. print('You can not be unwhitelisted or banned / kicked')
  1174. print("If someone uses the clear / clr command, you must re-apply the script.")
  1175. print("Most commands that effect players can be used silently. (Example /e :kick and /e kick would both work)")
  1176. print("------------------------------------------")
  1177. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  1178. print("------------Credit to Timeless------------")
  1179. print("------------------------------------------")
  1180.  
  1181.  
  1182. end
  1183.  
  1184.  
  1185.  
  1186.  
  1187. end
  1188. end
  1189.  
  1190. game.Players.LocalPlayer.Chatted:connect(function(msg)
  1191. adminexe(game.Players.LocalPlayer,msg)
  1192. end)
  1193.  
  1194. if deletepath then
  1195. game.Players.LocalPlayer.Character.Delete.CanBeDropped = true
  1196.  
  1197. drop = Instance.new("BillboardGui")
  1198. drop.Parent = game.Players.LocalPlayer.PlayerGui
  1199.  
  1200. droplbl = Instance.new("TextLabel")
  1201. droplbl.Parent = drop
  1202. droplbl.Text = "Drop the delete tool to initialize commands"
  1203. droplbl.BackgroundTransparency = 1
  1204. droplbl.TextColor3 = Color3.new(200,0,0)
  1205. droplbl.TextScaled = true
  1206. droplbl.Size = UDim2.new(0,150,0,30)
  1207. droplbl.Position = UDim2.new(0,400,0,400)
  1208.  
  1209. wait(2)
  1210.  
  1211. drop:Destroy()
  1212. end
  1213.  
  1214. if deletepath2 then
  1215. game.Players.LocalPlayer.Backpack.Delete.CanBeDropped = true
  1216.  
  1217. drop = Instance.new("BillboardGui")
  1218. drop.Parent = game.Players.LocalPlayer.PlayerGui
  1219.  
  1220. droplbl = Instance.new("TextLabel")
  1221. droplbl.Parent = drop
  1222. droplbl.Text = "Drop the delete tool to initialize commands"
  1223. droplbl.BackgroundTransparency = 1
  1224. droplbl.TextColor3 = Color3.new(200,0,0)
  1225. droplbl.TextScaled = true
  1226. droplbl.Size = UDim2.new(0,150,0,30)
  1227. droplbl.Position = UDim2.new(0,400,0,400)
  1228.  
  1229. wait(2)
  1230.  
  1231. drop:Destroy()
  1232. end
  1233.  
  1234. game.Players.LocalPlayer.Backpack.ChildAdded:connect(function(tool)
  1235. if tool.Name == "Delete" then
  1236. wait(.1)
  1237. tool.CanBeDropped = true
  1238.  
  1239. drop = Instance.new("BillboardGui")
  1240. drop.Parent = game.Players.LocalPlayer.PlayerGui
  1241.  
  1242. droplbl = Instance.new("TextLabel")
  1243. droplbl.Text = "Drop the delete tool to initialize commands"
  1244. droplbl.BackgroundTransparency = 1
  1245. droplbl.Parent = drop
  1246. droplbl.TextColor3 = Color3.new(200,0,0)
  1247. droplbl.TextScaled = true
  1248. droplbl.Size = UDim2.new(0,150,0,30)
  1249. droplbl.Position = UDim2.new(0,400,0,400)
  1250.  
  1251. wait(2)
  1252.  
  1253. drop:Destroy()
  1254. end
  1255. end)
  1256.  
  1257. function start(plr)
  1258.  
  1259. local found = false
  1260. local banned = false
  1261.  
  1262. for i=1,#whitelist do
  1263. if plr.Name == (whitelist[i]) then
  1264. found = true
  1265. end
  1266. end
  1267.  
  1268. for i=1,#banlist do
  1269. if plr.Name == banlist[i] then
  1270. banned = true
  1271. end
  1272.  
  1273. if banned == true then
  1274. game.ReplicatedStorage.axe:FireServer(plr)
  1275. end
  1276. end
  1277. if found == false and slock == true then
  1278. game.ReplicatedStorage.axe:FireServer(plr)
  1279. end
  1280.  
  1281. if found == true then
  1282. newtag(plr.Name)
  1283. plr.Chatted:connect(function(msg)
  1284. adminexe(plr,msg)
  1285. end)
  1286. end
  1287. end
  1288. game.Players.PlayerAdded:connect(function(plr)
  1289. start(plr)
  1290. end)
  1291.  
  1292.  
  1293.  
  1294.  
  1295.  
  1296.  
  1297. local creditsdab = Instance.new("ScreenGui")
  1298. local Frame = Instance.new("Frame")
  1299. local aidez = Instance.new("ImageLabel")
  1300. local names = Instance.new("TextLabel")
  1301. local scriptmadeby = Instance.new("TextLabel")
  1302. local scriptmadeby_2 = Instance.new("TextLabel")
  1303. local x = Instance.new("TextButton")
  1304.  
  1305. creditsdab.Name = "creditsdab"
  1306. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  1307.  
  1308. Frame.Parent = creditsdab
  1309. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  1310. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  1311. Frame.Size = UDim2.new(0, 274, 0, 274)
  1312.  
  1313. aidez.Name = "aidez"
  1314. aidez.Parent = Frame
  1315. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  1316. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1317. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  1318. aidez.Size = UDim2.new(0, 274, 0, 274)
  1319. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  1320.  
  1321. names.Name = "names"
  1322. names.Parent = Frame
  1323. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1324. names.BackgroundTransparency = 0.30000001192093
  1325. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1326. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  1327. names.Size = UDim2.new(0, 274, 0, 28)
  1328. names.Font = Enum.Font.SourceSans
  1329. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  1330. names.TextColor3 = Color3.new(1, 1, 1)
  1331. names.TextSize = 14
  1332.  
  1333. scriptmadeby.Name = "scriptmadeby"
  1334. scriptmadeby.Parent = Frame
  1335. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1336. scriptmadeby.BackgroundTransparency = 0.30000001192093
  1337. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1338. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  1339. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  1340. scriptmadeby.Font = Enum.Font.SourceSans
  1341. scriptmadeby.Text = "Script updated by"
  1342. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  1343. scriptmadeby.TextSize = 14
  1344.  
  1345. scriptmadeby_2.Name = "scriptmadeby"
  1346. scriptmadeby_2.Parent = Frame
  1347. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1348. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  1349. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1350. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  1351. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  1352. scriptmadeby_2.Font = Enum.Font.SourceSans
  1353. scriptmadeby_2.Text = "Check the dev console for a list of commands! (F9 or Shift + F9)"
  1354. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  1355. scriptmadeby_2.TextScaled = true
  1356. scriptmadeby_2.TextSize = 14
  1357. scriptmadeby_2.TextWrapped = true
  1358.  
  1359. x.Name = "x"
  1360. x.Parent = creditsdab
  1361. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1362. x.BackgroundTransparency = 0.30000001192093
  1363. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1364. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  1365. x.Size = UDim2.new(0, 28, 0, 28)
  1366. x.Font = Enum.Font.SourceSansSemibold
  1367. x.Text = "X"
  1368. x.TextColor3 = Color3.new(1, 1, 1)
  1369. x.TextSize = 30
  1370.  
  1371. x.MouseButton1Click:connect(function()
  1372. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  1373. end)
  1374.  
  1375. print("----------------COMMANDS-------------------")
  1376. print("Selection options: Full Player Name, Abrreviated, Others")
  1377. print('Example: ";ban others"')
  1378. print()
  1379. print(";cmds - I wonder what this does.")
  1380. print(";ban - Prevents user from rejoining the server.")
  1381. print(";unban - Unbans the target")
  1382. print(";bans - Shows bans in console")
  1383. print(";slock on - Turns serverlock on")
  1384. print(";slock off - Turns server lock off")
  1385. print(";kick - Removes target from the game (/e :kick and /e kick work)")
  1386. print(";wl - Whitelists the target (Can use commands, not on you though.)")
  1387. print(";unwl - Unwhitelists the target")
  1388. print(";wls -outputs whitelisted players to console (F9)")
  1389. print(";cashme - Gives you cash)")
  1390. print(";deletetool - Gives you a delete tool. (Full credit goes to Shootingisgood9 for this one)")
  1391. print(";clear - Removes everything in the workspace. (:removegame and :breakgame have the same effect)")
  1392. print(";breakgame - Breaks everything. (:removegame also works incase you got used to the remove commands.)")
  1393. print(";kill - Kills the target")
  1394. print(";punish - Deletes the target's character")
  1395. print(";unlock - Unlocks the workspace.")
  1396. print(";loopkill - Loopkills the target (Sometimes randomly stop)")
  1397. print(";unloopkill - Unloopkills the target")
  1398. print(";infkill - Loopkills the target, but it doesn't stop. Like at all. Ever.")
  1399. print(";rhum - Removes the target's humanoid. (Essentially turns them into a statue)")
  1400. print(";naked - Removes the targets's clothes. (echii)")
  1401. print(";removetools - Removes the target's tools")
  1402. print()
  1403. print('Executing "kick others/etc." wont kick those whitelisted, but if you single them out it will')
  1404. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  1405. print('and the same goes for :bans and :wls, since the game is filtering enabled, however they will')
  1406. print('be able to use commands if whitelisted')
  1407. print('You can not be unwhitelisted or banned / kicked')
  1408. print("If someone uses the clear / clr command, you must re-apply the script.")
  1409. print("Most commands that effect players can be used silently. (Example /e :kick and /e kick would both work)")
  1410. print("------------------------------------------")
  1411. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  1412. print("------------Credit to Timeless------------")
  1413. print("------------------------------------------")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement