Scriptorz5

xellouscmds

May 5th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.21 KB | None | 0 0
  1. --[[mediafire]]--
  2.  
  3. wait(1)
  4. --This GUI was made by Xellous, this is only a portion of the commands.
  5. Index = {"Deadly","Character","WalkSpeed","Teleport","Players","Be","Misc","Lighting","Control","Server","Vs"}
  6.  
  7. Deadly = {"Kill","RobloxLock","RobloxLockXell","MessageRemove","Explode","Respawn","ResetCredits","50kCredits","100kCredits","200kCredits"}
  8. Character = {"ForceField","UnForceField","Visible","InVisible","Spectate","Freeze","Thaw","Sparkles","UnSparkles","Heal","Trip","Sit","Jump","Stand","HighGrav","Grav","NoGrav"}
  9. WalkSpeed = {"Run","Normal","No","Reverse","+25","-25"}
  10. Lighting = {"Night","Day","Normal","DarkFog","LightFog","Blind"}
  11. PlayeR = {"Kick","Punish","UnPunish","Mute","DeMute","Bc","Tbc","Obc"}
  12. Be = {"Normal","Scary","kman786","Me","IceGuy"}
  13. Misc = {"Jail","UnJail","SitPunish","GiveBtools","RemoveTools","UnLock","Lock","God","Heal","NormalHealth"}
  14. Server = {"Shutdown","Crossroads"}
  15. Vs = {"NoWeps","AllWeps"}
  16.  
  17. Playerslist = {"All","Me","Others","Guests","Random"}
  18. YesNo = {"Yes","No"}
  19. l1 = nil
  20. l2 = nil
  21. l3 = nil
  22.  
  23.  
  24. Version = 3.00
  25. library = LoadLibrary("RbxGui")
  26.  
  27.  
  28.  
  29.  
  30. function GetPlayer(name)
  31.  
  32. if name == "All" then
  33. local Players = { }
  34. local players = game.Players:GetChildren()
  35. for i =1,#players do
  36. if players[i].className == "Player" then
  37. table.insert(Players,players[i])
  38. end end
  39. return Players
  40.  
  41. elseif name == "Me" then
  42. return {game.Players.LocalPlayer}
  43.  
  44. elseif name == "Others" then
  45. local Players = { }
  46. local players = game.Players:GetChildren()
  47. for i =1,#players do
  48. if players[i].className == "Player" and players[i].Name ~= game.Players.LocalPlayer then
  49. table.insert(Players,players[i])
  50. end end
  51. return Players
  52.  
  53. elseif name == "Guests" then
  54. local Players = { }
  55. local players = game.Players:GetChildren()
  56. for i =1,#players do
  57. if players[i].className == "Player" and string.sub(players[i].Name,1,5) == "Guest" then
  58. table.insert(Players,players[i])
  59. end end
  60. return Players
  61.  
  62. elseif name == "Random" then
  63. while true do
  64. local players = game.Players:GetChildren()
  65. local rand = math.random(1,#players)
  66. if players[rand].className == "Player" then
  67. return { players[rand] }
  68. end end
  69.  
  70. else
  71. player = game.Players:FindFirstChild(name)
  72. if player ~= nil and player.className == "Player" then
  73. return {player}
  74. end
  75. end
  76. print("Doesnt Exist")
  77. return 0
  78. end
  79.  
  80. function Command(Command)
  81. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  82. if LL2 ~= nil then LL2.Visible = true end
  83. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  84. if LL3 ~= nil then LL3:Destroy() end
  85. localp = game.Players.LocalPlayer
  86.  
  87. l2 = Command
  88. l3 = nil
  89. ------------------------------------Lighting
  90.  
  91.  
  92. if Command == "Night" then
  93. game.Lighting.TimeOfDay = "00:00:00"
  94. end
  95. if Command == "Day" then
  96. game.Lighting.TimeOfDay = "12:00:00"
  97. end
  98. if Command == "Normal" then
  99. game.Lighting.TimeOfDay = "12:00:00"
  100. game.Lighting.FogEnd = 100000
  101. game.Lighting.Brightness = 1
  102. end
  103. if Command == "DarkFog" then
  104. game.Lighting.TimeOfDay = "00:00:00"
  105. game.Lighting.FogEnd = 60
  106. game.Lighting.FogStart = 30
  107. game.Lighting.Brightness = 0
  108. game.Lighting.FogColor = Color3.new(0, 0, 0)
  109. end
  110. if Command == "LightFog" then
  111. game.Lighting.TimeOfDay = "12:00:00"
  112. game.Lighting.FogEnd = 60
  113. game.Lighting.FogStart = 30
  114. game.Lighting.Brightness = 1
  115. game.Lighting.FogColor = Color3.new(1, 1, 1)
  116. end
  117. if Command == "Blind" then
  118. game.Lighting.TimeOfDay = "12:00:00"
  119. game.Lighting.FogEnd = 0
  120. game.Lighting.FogStart = 0
  121. game.Lighting.Brightness = 1
  122. game.Lighting.FogColor = Color3.new(1, 0, 1)
  123. end
  124. if Command == "Shutdown" then
  125. CreateScript([[
  126. while true do
  127. wait(1)
  128. p= game.Players:GetChildren()
  129. for i= 1, #p do
  130. p[i]:remove()
  131. end
  132. end]],game.Workspace,"mpm")
  133. end
  134.  
  135. if Command == "Crossroads" then
  136. clear = game.Workspace:GetChildren()
  137. for i = 1 ,#clear do
  138. if clear[i].Name ~= "Terrain" then
  139. clear[i]:Destroy()
  140. end
  141. end
  142. local baseurl="http://www.roblox.com/asset/?id=%d"
  143. game:Load(baseurl:format(1818)) --crossroads =D
  144. wait(10)
  145. game.SetMessage("Respawning")
  146. --Respawns them
  147. local players = game.Players:GetChildren()
  148. for i =1,#players do
  149. if players[i].className == "Player" then
  150. local ack2 = Instance.new("Model")
  151. ack2.Parent = game.Workspace
  152. local ack4 = Instance.new("Part")
  153. ack4.Transparency = 1
  154. ack4.CanCollide = false
  155. ack4.Anchored = true
  156. ack4.Name = "Torso"
  157. ack4.Position = Vector3.new(10000,10000,10000)
  158. ack4.Parent = ack2
  159. local ack3 = Instance.new("Humanoid")
  160. ack3.Torso = ack4
  161. ack3.Parent = ack2
  162. players[i].Character = ack2
  163. end end
  164. game:ClearMessage()
  165. end
  166.  
  167.  
  168.  
  169.  
  170.  
  171. end
  172.  
  173. function PCommand(player)
  174. l3 = player
  175. m1 = "Gui "..Version
  176. local Command = l2
  177. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  178. if LL2 ~= nil then LL2.Visible = true end
  179. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  180. if LL3 ~= nil then LL3:Destroy() end
  181. player = GetPlayer(player)
  182. if player == 0 then return end
  183. m2 = m1.." Loaded"
  184.  
  185.  
  186. -------------------------Deadly
  187. if Command == "Kill" then
  188. for i = 1,#player do
  189. if player[i].Character ~= nil then
  190. local human = player[i].Character:FindFirstChild("Humanoid")
  191. if human ~= nil then
  192. human.Health = -1000
  193. end end end end
  194.  
  195. if Command == "RobloxLock" then
  196. for i = 1,#player do
  197. if player[i].Character ~= nil then
  198. local human = player[i].Character:FindFirstChild("Humanoid")
  199. if human ~= nil then
  200. game.Players.hancock98.RobloxLocked = true
  201. end end end end
  202.  
  203. if Command == "RobloxLockXell" then
  204. for i = 1,#player do
  205. if player[i].Character ~= nil then
  206. local human = player[i].Character:FindFirstChild("Humanoid")
  207. if human ~= nil then
  208. game.Players.Xellous.RobloxLocked = true
  209. end end end end
  210.  
  211. if Command == "MessageRemove" then
  212. for i = 1,#player do
  213. if player[i].Character ~= nil then
  214. local human = player[i].Character:FindFirstChild("Humanoid")
  215. if human ~= nil then
  216. game.Workspace.Message:Destroy()
  217. end end end end
  218.  
  219. if Command == "Explode" then
  220. for i = 1,#player do
  221. if player[i].Character ~= nil then
  222. local torso = player[i].Character:FindFirstChild("Torso")
  223. if torso ~= nil then
  224. local ex = Instance.new("Explosion")
  225. ex.Position = torso.Position
  226. ex.Parent = game.Workspace
  227. end end end end
  228.  
  229. if Command == "Respawn" then
  230. for i = 1,#player do
  231. local ack2 = Instance.new("Model")
  232. ack2.Parent = game.Workspace
  233. local ack4 = Instance.new("Part")
  234. ack4.Transparency = 1
  235. ack4.CanCollide = false
  236. ack4.Anchored = true
  237. ack4.Name = "Torso"
  238. ack4.Position = Vector3.new(10000,10000,10000)
  239. ack4.Parent = ack2
  240. local ack3 = Instance.new("Humanoid")
  241. ack3.Torso = ack4
  242. ack3.Parent = ack2
  243. player[i].Character = ack2
  244. end end
  245.  
  246. -------------------------WalkSpeed
  247.  
  248. if Command == "Run" then
  249. for i = 1,#player do
  250. if player[i].Character ~= nil then
  251. local human = player[i].Character:FindFirstChild("Humanoid")
  252. if human ~= nil then
  253. human.WalkSpeed = 60
  254. end end end end
  255.  
  256. if Command == "Normal" then
  257. for i = 1,#player do
  258. if player[i].Character ~= nil then
  259. local human = player[i].Character:FindFirstChild("Humanoid")
  260. if human ~= nil then
  261. human.WalkSpeed = 16
  262. end end end end
  263.  
  264. if Command == "No" then
  265. for i = 1,#player do
  266. if player[i].Character ~= nil then
  267. local human = player[i].Character:FindFirstChild("Humanoid")
  268. if human ~= nil then
  269. human.WalkSpeed = 0
  270. end end end end
  271. --This Is Made By Florioo and Noone else
  272. if Command == "Reverse" then
  273. for i = 1,#player do
  274. if player[i].Character ~= nil then
  275. local human = player[i].Character:FindFirstChild("Humanoid")
  276. if human ~= nil then
  277. human.WalkSpeed = -16
  278. end end end end
  279.  
  280. if Command == "+25" then
  281. for i = 1,#player do
  282. if player[i].Character ~= nil then
  283. local human = player[i].Character:FindFirstChild("Humanoid")
  284. if human ~= nil then
  285. human.WalkSpeed = human.WalkSpeed + 25
  286. end end end end
  287.  
  288. if Command == "-25" then
  289. for i = 1,#player do
  290. if player[i].Character ~= nil then
  291. local human = player[i].Character:FindFirstChild("Humanoid")
  292. if human ~= nil then
  293. human.WalkSpeed = human.WalkSpeed - 25
  294. end end end end
  295. --------------------------------Character
  296.  
  297. if Command == "ForceField" then
  298. for i = 1,#player do
  299. if player[i].Character ~= nil then
  300. local ff = Instance.new("ForceField")
  301. ff.Parent = player[i].Character
  302. end end end
  303. m3 = "Admin "..m2
  304. if Command == "UnForceField" then
  305. for i = 1,#player do
  306. if player[i].Character ~= nil then
  307. local c = player[i].Character:GetChildren()
  308. for i2 = 1,#c do
  309. if c[i2].className == "ForceField" then
  310. c[i2]:Destroy()
  311. end end end end end
  312.  
  313. if com== "Visible" then
  314. for i = 1,#player do
  315. if player[i].Character ~= nil then
  316. local char = player[i].Character
  317. local c = player[i].Character:GetChildren()
  318. for i =1,#c do
  319. if c[i].className == "Hat" then
  320. local handle = c[i]:FindFirstChild("Handle")
  321. if handle ~= nil then
  322. handle.Transparency = 0
  323. end end
  324. if c[i].className == "Part" then
  325. c[i].Transparency = 0
  326. if c[i].Name == "Torso" then
  327. local tshirt = char:FindFirstChild("roblox")
  328. if tshirt ~= nil then
  329. tshirt:clone().Parent = c[i]
  330. tshirt:Destroy()
  331. end end
  332. if c[i].Name == "Head" then
  333. if gface ~= nil then
  334. local face = gface:clone()
  335. face.Parent = c[i]
  336. end end end end end end end
  337.  
  338.  
  339. if Command == "InVisible" then
  340. for i = 1,#player do
  341. if player[i].Character ~= nil then
  342. local char = player[i].Character
  343. local c = player[i].Character:GetChildren()
  344. for i =1,#c do
  345. if c[i].className == "Hat" then
  346. local handle = c[i]:FindFirstChild("Handle")
  347. if handle ~= nil then
  348. handle.Transparency = 1
  349. end end
  350. if c[i].className == "Part" then
  351. c[i].Transparency = 1
  352. if c[i].Name == "Torso" then
  353. local tshirt = c[i]:FindFirstChild("roblox")
  354. if tshirt ~= nil then
  355. tshirt:clone().Parent = char
  356. tshirt:Destroy()
  357. end end
  358. if c[i].Name == "Head" then
  359. local face = c[i]:FindFirstChild("face")
  360. if face ~= nil then
  361. gface = face:clone()
  362. face:Destroy()
  363. end end end end end end end
  364. m4 = "ioo's "..m3
  365. if Command == "Spectate" then
  366. for i = 1,#player do
  367. local ff = Instance.new("ForceField")
  368. ff.Parent = player[i].Character
  369. local c = player[i].Backpack:GetChildren()
  370. for i =1,#c do
  371. c[i]:Destroy()
  372. end end end
  373.  
  374.  
  375. if Command == "Freeze" then
  376. for i = 1,#player do
  377. if player[i].Character ~= nil then
  378. local humanoid = player[i].Character:FindFirstChild("Humanoid")
  379. if humanoid ~= nil then
  380. humanoid.WalkSpeed = 0
  381. end
  382. local c = player[i].Character:GetChildren()
  383. for i =1,#c do
  384. if c[i].className == "Part" then
  385. c[i].Anchored = true
  386. c[i].Reflectance = 0.6
  387. end end end end end
  388.  
  389. if Command == "Thaw" then
  390. for i = 1,#player do
  391. if player[i].Character ~= nil then
  392. local humanoid = player[i].Character:FindFirstChild("Humanoid")
  393. if humanoid ~= nil then
  394. humanoid.WalkSpeed = 16
  395. end
  396. local c = player[i].Character:GetChildren()
  397. for i =1,#c do
  398. if c[i].className == "Part" then
  399. c[i].Anchored = false
  400. c[i].Reflectance = 0
  401. end end end end end
  402.  
  403.  
  404.  
  405. if Command == "Sparkles" then
  406. local floriOO = player
  407. for i = 1,#floriOO do
  408. if floriOO[i].Character ~= nil then
  409. local Creator = floriOO[i].Character:FindFirstChild("Torso")
  410. if Creator ~= nil then
  411. local lal = Instance.new("Sparkles")
  412. lal.Color = Color3.new(math.random(1,255),math.random(1,255),math.random(1,255))
  413. lal.Parent = Creator
  414. end end end end
  415. --This Is Made By Florioo and Noone else
  416. if Command == "UnSparkles" then
  417. for i = 1,#player do
  418. if player[i].Character ~= nil then
  419. local torso = player[i].Character:FindFirstChild("Torso")
  420. if torso ~= nil then
  421. local c = torso:GetChildren()
  422. for i2 = 1,#c do
  423. if c[i2].className == "Sparkles" then
  424. c[i2]:Destroy()
  425. end end end end end end
  426.  
  427. if Command == "Heal" then
  428. for i = 1,#player do
  429. if player[i].Character ~= nil then
  430. local human = player[i].Character:FindFirstChild("Humanoid")
  431. if human ~= nil then
  432. human.Health = human.MaxHealth
  433. end end end end
  434.  
  435. if Command == "Trip" then
  436. for i = 1,#player do
  437. if player[i].Character ~= nil then
  438. local torso = player[i].Character:FindFirstChild("Torso")
  439. if torso ~= nil then
  440. torso.CFrame = CFrame.new(torso.Position.x,torso.Position.y,torso.Position.z,0, 0, 1, 0, -1, 0, 1, 0, 0)
  441. end end end end
  442.  
  443.  
  444. if Command == "Sit" then
  445. for i = 1,#player do
  446. if player[i].Character ~= nil then
  447. local human = player[i].Character:FindFirstChild("Humanoid")
  448. if human ~= nil then
  449. human.Sit = true
  450. end end end end
  451.  
  452. if Command == "Jump" then
  453. for i = 1,#player do
  454. if player[i].Character ~= nil then
  455. local human = player[i].Character:FindFirstChild("Humanoid")
  456. if human ~= nil then
  457. human.Jump = true
  458. end end end end
  459.  
  460. if Command == "Stand" then
  461. for i = 1,#player do
  462. if player[i].Character ~= nil then
  463. local human = player[i].Character:FindFirstChild("Humanoid")
  464. if human ~= nil then
  465. human.Sit = false
  466. end end end end
  467.  
  468. if Command == "HighGrav" then
  469. for i = 1,#player do
  470. if player[i].Character ~= nil then
  471. local torso = player[i].Character:FindFirstChild("Torso")
  472. if torso ~= nil then
  473. local bf = torso:FindFirstChild("BF")
  474. if bf ~= nil then
  475. bf.force = Vector3.new(0,0,0)
  476. else
  477. local bf = Instance.new("BodyForce")
  478. bf.Name = "BF"
  479. bf.force = Vector3.new(0,0,0)
  480. bf.Parent = torso
  481. end
  482. local c2 = player[i].Character:GetChildren()
  483. for i=1,#c2 do
  484. if c2[i].className == "Part" then
  485. torso.BF.force = torso.BF.force - Vector3.new(0,c2[i]:getMass() * 60,0)
  486. end end end end end end
  487. m5 = "Flor"..m4
  488. if Command == "Grav" then
  489. for i = 1,#player do
  490. if player[i].Character ~= nil then
  491. local torso = player[i].Character:FindFirstChild("Torso")
  492. if torso ~= nil then
  493. local bf = torso:FindFirstChild("BF")
  494. if bf ~= nil then
  495. bf:Destroy()
  496. end end end end
  497. end
  498.  
  499. if com== "NoGrav" then
  500. for i = 1,#player do
  501. if player[i].Character ~= nil then
  502. local torso = player[i].Character:FindFirstChild("Torso")
  503. if torso ~= nil then
  504. local bf = torso:FindFirstChild("BF")
  505. if bf ~= nil then
  506. bf.force = Vector3.new(0,0,0)
  507. else
  508. local bf = Instance.new("BodyForce")
  509. bf.Name = "BF"
  510. bf.force = Vector3.new(0,0,0)
  511. bf.Parent = torso
  512. end
  513. local c2 = player[i].Character:GetChildren()
  514. for i=1,#c2 do
  515. if c2[i].className == "Part" then
  516. torso.BF.force = torso.BF.force + Vector3.new(0,c2[i]:getMass() * 140,0)
  517. end end end end end end
  518.  
  519. --------------------------------Players
  520. if Command == "Kick" then
  521. for i = 1,#player do
  522. if player[i] ~= nil then
  523. player[i]:Destroy()
  524. end end end
  525.  
  526. if Command == "Punish" then
  527. for i = 1,#player do
  528. if player[i].Character ~= nil then
  529. player[i].Character.Parent = game.Lighting
  530. end end end
  531.  
  532. if Command == "UnPunish" then
  533. for i = 1,#player do
  534. if player[i].Character ~= nil then
  535. player[i].Character.Parent = game.Workspace
  536. player[i].Character:MakeJoints()
  537. end end end
  538.  
  539. if Command == "Mute" then
  540. for i = 1,#player do
  541. if player[i] ~= nil then
  542. player[i]:SetSuperSafeChat(true)
  543. end end end
  544.  
  545.  
  546.  
  547. if Command == "DeMute" then
  548. for i = 1,#player do
  549. if player[i] ~= nil then
  550. player[i]:SetSuperSafeChat(false)
  551. end end end
  552.  
  553. if Command == "Bc" then
  554. for i = 1,#player do
  555. if player[i] ~= nil then
  556. player[i]:SetMembershipType( Enum.MembershipType.BuildersClub )
  557. end end end
  558.  
  559. if Command == "Tbc" then
  560. for i = 1,#player do
  561. if player[i] ~= nil then
  562. player[i]:SetMembershipType( Enum.MembershipType.TurboBuildersClub )
  563. end end end
  564.  
  565. if Command == "Obc" then
  566. for i = 1,#player do
  567. if player[i] ~= nil then
  568. player[i]:SetMembershipType( Enum.MembershipType.OutrageousBuildersClub )
  569. end end end
  570.  
  571.  
  572. if Command == "kman786" then
  573. Id = "52770"
  574. for i = 1,#player do
  575. if player[i] ~= nil then
  576. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..Id
  577. player[i].Character:BreakJoints()
  578. end end end
  579.  
  580. if Command == "IceGuy" then
  581. Id = "1289054"
  582. for i = 1,#player do
  583. if player[i] ~= nil then
  584. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..Id
  585. player[i].Character:BreakJoints()
  586. end end end
  587.  
  588. if Command == "Scary" then
  589. Id = "7592737"
  590. for i = 1,#player do
  591. if player[i] ~= nil then
  592. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..Id
  593. player[i].Character:BreakJoints()
  594. end end end
  595.  
  596. if Command == "Me" then
  597. for i = 1,#player do
  598. if player[i] ~= nil then
  599. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..LocalPlayer.userId
  600. player[i].Character:BreakJoints()
  601. end end end
  602.  
  603.  
  604. if Command == "Normal" then
  605. for i = 1,#player do
  606. if player[i] ~= nil then
  607. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..Player[i].userId
  608. player[i].Character:BreakJoints()
  609. end end end
  610.  
  611. ---------------------------------------------Misc
  612. if Command == "Jail" then
  613. for i = 1,#player do
  614. if player[i].Character ~= nil then
  615. local torso = player[i].Character:FindFirstChild("Torso")
  616. if torso ~= nil then
  617. local ack = Instance.new("Model")
  618. ack.Name = "Florioo" .. player[i].Name
  619. icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-26.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -3.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -3.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-28.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -5.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -7.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(7,1.2000000476837,7) icky.CFrame = CFrame.new(-27.5, 112.599998, -4.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-26.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -5.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -1.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-28.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack
  620. ack.Parent = game.Workspace
  621. ack:MoveTo(torso.Position)
  622. end end end end
  623.  
  624. if Command == "UnJail" then
  625. for i = 1,#player do
  626. local c = game.Workspace:GetChildren()
  627. for i2 =1,#c do
  628. if string.sub(c[i2].Name,1,7) == "Florioo" then
  629. if string.sub(c[i2].Name,8) == player[i].Name then
  630. c[i2]:Destroy()
  631. end end end end end
  632.  
  633. if Command == "SitPunish" then
  634. for i = 1,#player do
  635. local human = player[i].Character:FindFirstChild("Humanoid")
  636. if human ~= nil then
  637. human.Sit = true
  638. end
  639. wait(1)
  640. if player[i].Character ~= nil then
  641. player[i].Character.Parent = game.Lighting
  642. end
  643. wait(3)
  644. if player[i].Character ~= nil then
  645. player[i].Character.Parent = game.Workspace
  646. player[i].Character:MakeJoints()
  647. end end end
  648.  
  649. if Command == "GiveBtools" then
  650. for i = 1,#player do
  651. local a = Instance.new("HopperBin")
  652. a.BinType = "GameTool"
  653. a.Parent = player[i].Backpack
  654. local a = Instance.new("HopperBin")
  655. a.BinType = "Clone"
  656. a.Parent = player[i].Backpack
  657. local a = Instance.new("HopperBin")
  658. a.BinType = "Hammer"
  659. a.Parent = player[i].Backpack
  660. end end
  661.  
  662. if Command == "RemoveTools" then
  663. for i = 1,#player do
  664. local c = player[i].Backpack:GetChildren()
  665. for i =1,#c do
  666. c[i]:Destroy()
  667. end end end
  668.  
  669. if Command == "UnLock" then
  670. for i = 1,#player do
  671. if player[i].Character ~= nil then
  672. local c = player[i].Character:GetChildren()
  673. for i =1,#c do
  674. if c[i].className == "Part" then
  675. c[i].Locked = false
  676. end end end end end
  677.  
  678. if Command == "Lock" then
  679. for i = 1,#player do
  680. if player[i].Character ~= nil then
  681. local c = player[i].Character:GetChildren()
  682. for i =1,#c do
  683. if c[i].className == "Part" then
  684. c[i].Locked = true
  685. end end end end end
  686.  
  687. if Command == "God" then
  688. for i = 1,#player do
  689. if player[i].Character ~= nil then
  690. local human = player[i].Character:FindFirstChild("Humanoid")
  691. if human ~= nil then
  692. human.MaxHealth = math.huge
  693. end end end end
  694.  
  695. if Command == "Heal" then
  696. for i = 1,#player do
  697. if player[i].Character ~= nil then
  698. local human = player[i].Character:FindFirstChild("Humanoid")
  699. if human ~= nil then
  700. human.Health = 100
  701. end end end end
  702.  
  703. if Command == "NormalHealth" then
  704. for i = 1,#player do
  705. if player[i].Character ~= nil then
  706. local human = player[i].Character:FindFirstChild("Humanoid")
  707. if human ~= nil then
  708. human.MaxHealth = 100
  709. end end end end
  710.  
  711.  
  712. --------------------------------------------------Vs
  713. if Command == "AllWeps" then
  714. for i = 1,#player do
  715. if player[i].Character ~= nil then
  716. player[i].FAMAS.Value = true
  717. player[i].SCAR.Value = true
  718. player[i]["Riot Shield"].Value = true
  719. player[i].M1014.Value = true
  720. player[i].M60.Value = true
  721. player[i].Barrett.Value = true
  722. player[i].Minigun.Value = true
  723. local human = player[i].Character:FindFirstChild("Humanoid")
  724. if human ~= nil then
  725. human.Health = 0
  726. end end end end
  727.  
  728. if Command == "NoWeps" then
  729. for i = 1,#player do
  730. if player[i].Character ~= nil then
  731. player[i]= player[i]
  732. player[i].FAMAS.Value = false
  733. player[i].SCAR.Value = false
  734. player[i]["Riot Shield"].Value = false
  735. player[i].M1014.Value = false
  736. player[i].M60.Value = false
  737. player[i].Barrett.Value = false
  738. player[i].Minigun.Value = false
  739. local human = player[i].Character:FindFirstChild("Humanoid")
  740. if human ~= nil then
  741. human.Health = 0
  742. end end end end
  743.  
  744. end
  745.  
  746.  
  747.  
  748.  
  749.  
  750.  
  751. function Teleport(to)
  752. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  753. if LL2 ~= nil then LL2.Visible = true end
  754. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  755. if LL3 ~= nil then LL3:Destroy() end
  756. l3 = to
  757. who=l2
  758. To = game.Players:FindFirstChild(to)
  759. Who = GetPlayer(who)
  760. if Who == 0 then return end
  761. for i = 1 ,#Who do
  762. if Who[i].Character ~= nil and To.Character ~= nil then
  763. if Who[i].Character:FindFirstChild("Torso") ~= nil and To.Character:FindFirstChild("Torso") ~= nil then
  764. Who[i].Character.Torso.CFrame = To.Character.Torso.CFrame + Vector3.new(math.random(-i/3,i/3),0,math.random(-i/3,i/3))
  765. end end end end
  766.  
  767. function TeleportTo(Who)
  768. l2 = Who
  769. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  770. if LL2 ~= nil then LL2.Visible = false end
  771. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  772. if LL3 ~= nil then LL3:Destroy() end
  773. b = {}
  774. local a=game.Players:GetPlayers()
  775. for i = 1, #a do
  776. table.insert (b, i, a[i].Name)
  777. end
  778. CreateMenu("L3",b,UDim2.new(0, 610, 0, 0),Teleport)
  779. end
  780.  
  781. function Controlb(to)
  782. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  783. if LL2 ~= nil then LL2.Visible = true end
  784. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  785. if LL3 ~= nil then LL3:Destroy() end
  786. l3 = to
  787. who=l2
  788. To = game.Players:FindFirstChild(to)
  789. Who = GetPlayer(who)
  790. if Who == 0 then return end
  791. for i = 1 ,#Who do
  792. Who[i].Character = To.Character
  793. end end
  794.  
  795. function Controla(Who)
  796. l2 = Who
  797. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  798. if LL2 ~= nil then LL2.Visible = false end
  799. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  800. if LL3 ~= nil then LL3:Destroy() end
  801. local a=game.Players:GetPlayers()
  802. for i = 1 ,#a do
  803.  
  804. b = {}
  805. local a=game.Players:GetPlayers()
  806. for i = 1, #a do
  807. table.insert (b, i, a[i].Name)
  808. end
  809. end
  810. CreateMenu("L3",b,UDim2.new(0, 610, 0, 0),Controlb)
  811. end
  812.  
  813. --F
  814.  
  815. function Confirm(command)
  816. l2 = command
  817. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  818. if LL2 ~= nil then LL2.Visible = false end
  819. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  820. if LL3 ~= nil then LL3:Destroy() end
  821. CreateMenu("L3",YesNo,UDim2.new(0, 610, 0, 0),confirM)
  822. end
  823.  
  824. function confirM(yesorno)
  825. l3 = yesorno
  826. if yesorno == "Yes" then
  827. Command(l2)
  828. end
  829. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  830. if LL2 ~= nil then LL2.Visible = true end
  831. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  832. if LL3 ~= nil then LL3:Destroy() end
  833. end
  834.  
  835.  
  836. function CreateScript(script,parent,name)
  837. a = Instance.new ("Script")
  838. a.Source = script
  839. a.Name = name
  840. a.Parent = parent
  841. end
  842.  
  843. function Player(command)
  844. l2 = command
  845. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  846. if LL2 ~= nil then LL2.Visible = false end
  847. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  848. if LL3 ~= nil then LL3:Destroy() end
  849. local Playerslistn = Playerslist
  850. for i = 1, #Playerslist do
  851. print (Playerslist[i])
  852. end
  853. for i = 1, #Playerslistn do
  854. print (Playerslist[i])
  855. end
  856. local a=game.Players:GetPlayers()
  857. for i = 1, #a do
  858. table.insert (Playerslistn, i+5, a[i].Name)
  859. end
  860. CreateMenu("L3",Playerslistn,UDim2.new(0, 610, 0, 0),PCommand)
  861. end
  862.  
  863. function Indexselect(choice)
  864. l1 = choice
  865. local LL2 = ScreenGui.Frame:FindFirstChild("L2")
  866. if LL2 ~= nil then LL2:Destroy() end
  867. local LL3 = ScreenGui.Frame:FindFirstChild("L3")
  868. if LL3 ~= nil then LL3:Destroy() end
  869.  
  870. if l1 == "Deadly" then
  871. CreateMenu("L2",Deadly,UDim2.new(0, 455, 0, 0),Player)
  872. end
  873. if l1 == "Character" then
  874. CreateMenu("L2",Character,UDim2.new(0, 455, 0, 0),Player)
  875. end
  876. if l1 == "WalkSpeed" then
  877. CreateMenu("L2",WalkSpeed,UDim2.new(0, 455, 0, 0),Player)
  878. end
  879. if l1 == "Character" then
  880. CreateMenu("L2",Character,UDim2.new(0, 455, 0, 0),Player)
  881. end
  882. if l1 == "Teleport" then
  883. local Playerslistn = Playerslist
  884. local a=game.Players:GetPlayers()
  885. for i = 1, #a do
  886. table.insert (Playerslistn, i+5, a[i].Name)
  887. end
  888. CreateMenu("L2",Playerslistn,UDim2.new(0, 455, 0, 0),TeleportTo)
  889. end
  890. if l1 == "Control" then
  891. local Playerslistn = Playerslist
  892. local a=game.Players:GetPlayers()
  893. for i = 1, #a do
  894. table.insert (Playerslistn, i+5, a[i].Name)
  895. end
  896. CreateMenu("L2",Playerslistn,UDim2.new(0, 455, 0, 0),Controla)
  897. end
  898. if l1 == "Players" then
  899. CreateMenu("L2",PlayeR,UDim2.new(0, 455, 0, 0),Player)
  900. end
  901. if l1 == "Be" then
  902. CreateMenu("L2",Be,UDim2.new(0, 455, 0, 0),Player)
  903. end
  904. if l1 == "Misc" then
  905. CreateMenu("L2",Misc,UDim2.new(0, 455, 0, 0),Player)
  906. end
  907. if l1 == "Lighting" then
  908. CreateMenu("L2",Lighting,UDim2.new(0, 455, 0, 0),Command)
  909. end
  910. if l1 == "Server" then
  911. CreateMenu("L2",Server,UDim2.new(0, 455, 0, 0),Confirm)
  912. end
  913. if l1 == "Vs" then
  914. CreateMenu("L2",Vs,UDim2.new(0, 455, 0, 0),Player)
  915. end
  916. end
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924. function CreateMenu(name,Table,pos,Func)
  925. menu=library.CreateDropDownMenu(Table,Func)
  926. menu.Parent = Frame
  927. menu.Size = UDim2.new(0, 150, 0, 30)
  928. menu.Position = pos
  929. menu.Name = name
  930. end
  931.  
  932.  
  933.  
  934.  
  935. ScreenGui = Instance.new("ScreenGui",game:GetService("CoreGui"))
  936. Frame = Instance.new("Frame")
  937. Frame.Parent = ScreenGui
  938. CreateMenu("L1",Index,UDim2.new(0, 300, 0, 0),Indexselect)
Add Comment
Please, Sign In to add comment