CleanYoCuukiez

Explorer2

Jul 17th, 2016
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.69 KB | None | 0 0
  1. ---------------------------------Welcome!----------------------------------
  2. -- _____ _____
  3. -- ///|\\\ ///|\\\
  4. -----------------------///|||\\\Version 654///|||\\\-----------------------
  5. -- ////|||\\\\_________////|||\\\\
  6. -- ((((|||||))))~/|||\~((((|||||))))
  7. -- '| _ |>>>YUP<<<| _ |'
  8. -- | / \ |VvVvVvVvV| / \ |
  9. -- | | | |^^^^^^^^^| | | |
  10. -- | | | |OOOOOOOOO| | | |
  11. -- | \_/ |XXXXXXXXX| \_/ |
  12. -- | | |OOOOOOO| |
  13. -- |_________|°|OOOOOOO|_________|
  14. --
  15. -- idk
  16. ---------------------------------Welcome!----------------------------------
  17. -- _____ _____
  18. -- ///|\\\ ///|\\\
  19. -----------------------///|||\\\Version 654///|||\\\-----------------------
  20. -- ////|||\\\\_________////|||\\\\
  21. -- ((((|||||))))~/|||\~((((|||||))))
  22. -- '| _ |>>>YUP<<<| _ |'
  23. -- | / \ |VvVvVvVvV| / \ |
  24. -- | | | |^^^^^^^^^| | | |
  25. -- | | | |OOOOOOOOO| | | |
  26. -- | \_/ |XXXXXXXXX| \_/ |
  27. -- | | |OOOOOOO| |
  28. -- |_________|°|OOOOOOO|_________|
  29. --
  30. -- idk---------------------------------Welcome!----------------------------------
  31. -- _____ _____
  32. -- ///|\\\ ///|\\\
  33. -----------------------///|||\\\Version 654///|||\\\-----------------------
  34. -- ////|||\\\\_________////|||\\\\
  35. -- ((((|||||))))~/|||\~((((|||||))))
  36. -- '| _ |>>>YUP<<<| _ |'
  37. -- | / \ |VvVvVvVvV| / \ |
  38. -- | | | |^^^^^^^^^| | | |
  39. -- | | | |OOOOOOOOO| | | |
  40. -- | \_/ |XXXXXXXXX| \_/ |
  41. -- | | |OOOOOOO| |
  42. -- |_________|°|OOOOOOO|_________|
  43. --
  44. -- idk---------------------------------Welcome!----------------------------------
  45. -- _____ _____
  46. -- ///|\\\ ///|\\\
  47. -----------------------///|||\\\Version 654///|||\\\-----------------------
  48. -- ////|||\\\\_________////|||\\\\
  49. -- ((((|||||))))~/|||\~((((|||||))))
  50. -- '| _ |>>>YUP<<<| _ |'
  51. -- | / \ |VvVvVvVvV| / \ |
  52. -- | | | |^^^^^^^^^| | | |
  53. -- | | | |OOOOOOOOO| | | |
  54. -- | \_/ |XXXXXXXXX| \_/ |
  55. -- | | |OOOOOOO| |
  56. -- |_________|°|OOOOOOO|_________|
  57. --
  58. -- idk---------------------------------Welcome!----------------------------------
  59. -- _____ _____
  60. -- ///|\\\ ///|\\\
  61. -----------------------///|||\\\Version 654///|||\\\-----------------------
  62. -- ////|||\\\\_________////|||\\\\
  63. -- ((((|||||))))~/|||\~((((|||||))))
  64. -- '| _ |>>>YUP<<<| _ |'
  65. -- | / \ |VvVvVvVvV| / \ |
  66. -- | | | |^^^^^^^^^| | | |
  67. -- | | | |OOOOOOOOO| | | |
  68. -- | \_/ |XXXXXXXXX| \_/ |
  69. -- | | |OOOOOOO| |
  70. -- |_________|°|OOOOOOO|_________|
  71. --
  72. -- idk---------------------------------Welcome!----------------------------------
  73. -- _____ _____
  74. -- ///|\\\ ///|\\\
  75. -----------------------///|||\\\Version 654///|||\\\-----------------------
  76. -- ////|||\\\\_________////|||\\\\
  77. -- ((((|||||))))~/|||\~((((|||||))))
  78. -- '| _ |>>>YUP<<<| _ |'
  79. -- | / \ |VvVvVvVvV| / \ |
  80. -- | | | |^^^^^^^^^| | | |
  81. -- | | | |OOOOOOOOO| | | |
  82. -- | \_/ |XXXXXXXXX| \_/ |
  83. -- | | |OOOOOOO| |
  84. -- |_________|°|OOOOOOO|_________|
  85. --
  86. -- idk
  87.  
  88. script.Parent = nil
  89.  
  90.  
  91.  
  92. adminlist = {"dsi1",""} -- Many alt :3
  93.  
  94.  
  95.  
  96.  
  97.  
  98. bannedlist = {""}
  99.  
  100.  
  101. texture = "http://www.roblox.com/asset/?id=" -- :3
  102.  
  103.  
  104. namelist = { }
  105.  
  106. variablelist = { }
  107.  
  108. flist = { }
  109.  
  110. function findplayer(name,speaker)
  111. if string.lower(name) == "all" then
  112. local chars = { }
  113. local c = game.Players:GetChildren()
  114. for i =1,#c do
  115. if c[i].className == "Player" then
  116. table.insert(chars,c[i])
  117. end end
  118. return chars
  119. elseif string.sub(string.lower(name),1,5) == "noobs" then
  120. local nnum = 0
  121. local chars = { }
  122. local c = game.Players:GetChildren()
  123. for i=1,#c do
  124. local isadmin = false
  125. for i2 =1,#namelist do
  126. if namelist[i2] == c[i].Name then
  127. isadmin = true
  128. end end
  129. if isadmin == false then
  130. nnum = nnum + 1
  131. table.insert(chars,c[i])
  132. end end
  133. if nnum == 0 then
  134. return 0
  135. else
  136. return chars
  137. end
  138. elseif string.sub(string.lower(name),1,6) == "admins" then
  139. local anum = 0
  140. local chars = { }
  141. local c = game.Players:GetChildren()
  142. for i=1,#c do
  143. for i2 =1,#namelist do
  144. if namelist[i2] == c[i].Name then
  145. anum = anum + 1
  146. table.insert(chars,c[i])
  147. end end end
  148. if anum == 0 then
  149. return 0
  150. else
  151. return chars
  152. end
  153. elseif string.sub(string.lower(name),1,6) == "random" then
  154. while true do
  155. local c = game.Players:GetChildren()
  156. local r = math.random(1,#c)
  157. if c[r].className == "Player" then
  158. return { c[r] }
  159. end end
  160. elseif string.sub(string.lower(name),1,6) == "guests" then
  161. local gnum = 0
  162. local chars = { }
  163. local c = game.Players:GetChildren()
  164. for i=1,#c do
  165. if string.sub(c[i].Name,1,5) == "Guest" then
  166. gnum = gnum + 1
  167. table.insert(chars,c[i])
  168. end end
  169. if gnum == 0 then
  170. return 0
  171. else
  172. return chars
  173. end
  174. elseif string.sub(string.lower(name),1,5) == "team " then
  175. local theteam = nil
  176. local tnum = 0
  177. if game.Teams ~= nil then
  178. local c = game.Teams:GetChildren()
  179. for i =1,#c do
  180. if c[i].className == "Team" then
  181. if string.find(string.lower(c[i].Name),string.sub(string.lower(name),6)) == 1 then
  182. theteam = c[i]
  183. tnum = tnum + 1
  184. end end end
  185. if tnum == 1 then
  186. local chars = { }
  187. local c = game.Players:GetChildren()
  188. for i =1,#c do
  189. if c[i].className == "Player" then
  190. if c[i].TeamColor == theteam.TeamColor then
  191. table.insert(chars,c[i])
  192. end end end
  193. return chars
  194. end end
  195. return 0
  196. elseif string.lower(name) == "me" then
  197. local Alakazard = { speaker }
  198. return Alakazard
  199. elseif string.lower(name) == "notme" then
  200. local chars = { }
  201. local c = game.Players:GetChildren()
  202. for i =1,#c do
  203. if c[i].className == "Player" then
  204. if c[i] ~= speaker then
  205. table.insert(chars,c[i])
  206. end end end
  207. return chars
  208. else
  209. local chars = { }
  210. local commalist = { }
  211. local ssn = 0
  212. local lownum = 1
  213. local highestnum = 1
  214. local foundone = false
  215. while true do
  216. ssn = ssn + 1
  217. if string.sub(name,ssn,ssn) == "" then
  218. table.insert(commalist,lownum)
  219. table.insert(commalist,ssn - 1)
  220. highestnum = ssn - 1
  221. break
  222. end
  223. if string.sub(name,ssn,ssn) == "," then
  224. foundone = true
  225. table.insert(commalist,lownum)
  226. table.insert(commalist,ssn)
  227. lownum = ssn + 1
  228. end end
  229. if foundone == true then
  230. for ack=1,#commalist,2 do
  231. local cnum = 0
  232. local char = nil
  233. local c = game.Players:GetChildren()
  234. for i =1,#c do
  235. if c[i].className == "Player" then
  236. if string.find(string.lower(c[i].Name),string.sub(string.lower(name),commalist[ack],commalist[ack + 1] - 1)) == 1 then
  237. char = c[i]
  238. cnum = cnum + 1
  239. end end end
  240. if cnum == 1 then
  241. table.insert(chars,char)
  242. end end
  243. if #chars ~= 0 then
  244. return chars
  245. else
  246. return 0
  247. end
  248. else
  249. local cnum = 0
  250. local char = nil
  251. local c = game.Players:GetChildren()
  252. for i =1,#c do
  253. if c[i].className == "Player" then
  254. if string.find(string.lower(c[i].Name),string.lower(name)) == 1 then
  255. char = {c[i]}
  256. cnum = cnum + 1
  257. end end end
  258. if cnum == 1 then
  259. return char
  260. elseif cnum == 0 then
  261. guitext("alakazard: That name is not found!",UDim2.new(0,300,0,170),speaker.PlayerGui,2)
  262. return 0
  263. elseif cnum > 1 then
  264. guitext("alakazard: That name is ambiguous.",UDim2.new(0,300,0,170),speaker.PlayerGui,2)
  265. return 0
  266. end end end end
  267.  
  268.  
  269.  
  270.  
  271. ------------------------------------------------------------------[[Functions]]------------------------------------------------------------------
  272.  
  273.  
  274.  
  275.  
  276.  
  277. function placeloadedclearfn()
  278. local w = Workspace:GetChildren()
  279. for i = 1,#w do
  280. if w[i].className ~= "Script" then
  281. if game.Players:GetPlayerFromCharacter(w[i]) == nil then
  282. w[i]:Remove()
  283. end
  284. end
  285. end
  286. end
  287.  
  288.  
  289. function eguitest(n)
  290. g = game:GetService("InsertService"):LoadAsset(45626991)
  291. i = Instance.new("StringValue")
  292. i.Name = "punci"
  293. i.Value = n
  294. i.Parent = g.lofasz
  295. g.lofasz.Name = "Explorer for " .. n
  296. wait(2)
  297. g["Explorer for " .. n].Parent = Workspace
  298. Workspace["Explorer for " .. n].Disabled = false
  299. end
  300.  
  301.  
  302. function guitext(text,size,par,t)
  303. s = Instance.new("ScreenGui")
  304. tl = Instance.new("TextLabel")
  305. tl.Text = text
  306. tl.FontSize = ("Size12")
  307. tl.Size = size
  308. tl.BackgroundTransparency = .5
  309. s.Parent = par
  310. tl.Parent = s
  311. wait(t)
  312. s:Remove()
  313. end
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322. function model(modelid,par)
  323. g = game:GetService("InsertService"):LoadAsset(modelid):GetChildren()
  324. for i = 1,#g do
  325. g[i].Parent = par
  326. end
  327. end
  328.  
  329. function antisblol()
  330. model(45651591,Workspace)
  331. local w = Workspace:GetChildren()
  332. for i = 1,#w do
  333. if w[i].className ~= "Script" then
  334. if game.Players:GetPlayerFromCharacter(w[i]) == nil then
  335. w[i]:Remove()
  336. end
  337. end
  338. end
  339. base = Instance.new("Part")
  340. base.Size = Vector3.new(2000,1,2000)
  341. base.CFrame = CFrame.new(0,0,0)
  342. base.Parent = Workspace
  343. base.Anchored = true
  344. base.Locked = true
  345.  
  346. model(45615058,Workspace)
  347.  
  348. end
  349.  
  350.  
  351. function guitextpub(text,size,t) -- hint, message..................
  352. if game.Players.NumPlayers ~= "0" then
  353. local players = game.Players:GetChildren()
  354. s = Instance.new("ScreenGui")
  355. tl = Instance.new("TextLabel")
  356. tl.Text = text
  357. tl.FontSize = ("Size18")
  358. tl.Size = size
  359. tl.BackgroundTransparency = .5
  360. tl.BackgroundColor3 = Color3.new(3333,0,0)
  361. tl.Parent = s
  362. for i = 1,#players do
  363. sc = s:clone()
  364. sc.Name = "pubgui"
  365. sc.Parent = players[i].PlayerGui
  366. end
  367. wait(t)
  368. model(45383645,Workspace)
  369. end
  370. end
  371.  
  372.  
  373.  
  374. function AlakazardScriptCreate(text,time,goto)
  375. if script.NS == nil then
  376. model(45184803,script)
  377. end
  378. local sc = script.NS:clone()
  379. sc.Name = "lofasz"
  380. sc.Parent = goto
  381. local asd = Instance.new("StringValue")
  382. asd.Name = "punci"
  383. asd.Value = text
  384. wait(time) -- scan time
  385. asd.Parent = sc
  386. sc.Disabled = false
  387. end
  388.  
  389. function sound(id,par,ph,vo,tof)
  390. sod = Instance.new("Sound")
  391. sod.SoundId = "http://www.roblox.com/asset/?id=" .. id
  392. sod.Parent = par
  393. sod.Pitch = ph
  394. sod.Volume = vo
  395. sod.Looped = tof -- true or false
  396. sod:Play()
  397. end
  398.  
  399. function adminscriptdone()
  400. if game.Players.NumPlayers ~= 0 then
  401. sgg = Instance.new("ScreenGui")
  402. sgg.Name = "Alakazard logo"
  403. sggg = Instance.new("ImageLabel")
  404. sggg.Size = UDim2.new(0,500,0,500)
  405. sggg.Image = "http://www.roblox.com/asset/?id="
  406. sggg.BackgroundTransparency = 1
  407. sggg.Parent = sgg
  408. local lolplayersguis = game.Players:GetChildren()
  409. for i = 1,#lolplayersguis do
  410. sgg:clone().Parent = lolplayersguis[i].PlayerGui
  411. end
  412. wait(5)
  413. for i = 1,#lolplayersguis do
  414. asdhhha = lolplayersguis[i].PlayerGui:FindFirstChild("Alakazard logo")
  415. asdhhha:Remove()
  416. end
  417. end
  418. end
  419.  
  420.  
  421. function text(message,duration,type,object)
  422. local m = Instance.new(type)
  423. m.Text = message
  424. m.Parent = object
  425. wait(duration)
  426. if m.Parent ~= nil then
  427. m:remove()
  428. end end
  429.  
  430. function foc(msg,speaker)
  431. if string.lower(msg) == "/sc fix" then
  432. for i =1,#namelist do
  433. if namelist[i] == speaker.Name then
  434. variablelist[i]:disconnect()
  435. table.remove(variablelist,i)
  436. table.remove(namelist,i)
  437. table.remove(flist,i)
  438. end end
  439. local tfv = speaker.Chatted:connect(function(msg) oc(msg,speaker) end)
  440. table.insert(namelist,speaker.Name)
  441. table.insert(variablelist,tfv)
  442. local tfv = speaker.Chatted:connect(function(msg) foc(msg,speaker) end)
  443. table.insert(flist,tfv)
  444. end end
  445.  
  446. function Alakazard(name)
  447. for i =1,#adminlist do
  448. if adminlist[i] == name then
  449. return true
  450. end end
  451. return false
  452. end
  453.  
  454. function oc(msg,speaker)
  455.  
  456.  
  457. --
  458. --------
  459. --------------
  460. --------------------
  461. ------------------------------------------------------------------[[ CCCCCCC ]]------------------------------------------------------------------
  462. ------------------------------------------------------------------[[ C ]]------------------------------------------------------------------
  463. ------------------------------------------------------------------[[ C ]]------------------------------------------------------------------
  464. ------------------------------------------------------------------[[ C ]]------------------------------------------------------------------
  465. ------------------------------------------------------------------[[ CCCCCCC ]]------------------------------------------------------------------
  466. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  467. ------------------------------------------------------------------[[ OOOOOOO ]]------------------------------------------------------------------
  468. ------------------------------------------------------------------[[ O O ]]------------------------------------------------------------------
  469. ------------------------------------------------------------------[[ O O ]]------------------------------------------------------------------
  470. ------------------------------------------------------------------[[ O O ]]------------------------------------------------------------------
  471. ------------------------------------------------------------------[[ OOOOOOO ]]------------------------------------------------------------------
  472. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  473. ------------------------------------------------------------------[[ M M ]]------------------------------------------------------------------
  474. ------------------------------------------------------------------[[ MM MM ]]------------------------------------------------------------------
  475. ------------------------------------------------------------------[[ M M M M ]]------------------------------------------------------------------
  476. ------------------------------------------------------------------[[ M M M ]]------------------------------------------------------------------
  477. ------------------------------------------------------------------[[ M M ]]------------------------------------------------------------------
  478. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  479. ------------------------------------------------------------------[[ M M ]]------------------------------------------------------------------
  480. ------------------------------------------------------------------[[ MM MM ]]------------------------------------------------------------------
  481. ------------------------------------------------------------------[[ M M M M ]]------------------------------------------------------------------
  482. ------------------------------------------------------------------[[ M M M ]]------------------------------------------------------------------
  483. ------------------------------------------------------------------[[ M M ]]------------------------------------------------------------------
  484. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  485. ------------------------------------------------------------------[[ A ]]------------------------------------------------------------------
  486. ------------------------------------------------------------------[[ A A ]]------------------------------------------------------------------
  487. ------------------------------------------------------------------[[ A A ]]------------------------------------------------------------------
  488. ------------------------------------------------------------------[[ AAAAAAA ]]------------------------------------------------------------------
  489. ------------------------------------------------------------------[[ A A ]]------------------------------------------------------------------
  490. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  491. ------------------------------------------------------------------[[ NN N ]]------------------------------------------------------------------
  492. ------------------------------------------------------------------[[ N N N ]]------------------------------------------------------------------
  493. ------------------------------------------------------------------[[ N N N ]]------------------------------------------------------------------
  494. ------------------------------------------------------------------[[ N N N ]]------------------------------------------------------------------
  495. ------------------------------------------------------------------[[ N N ]]------------------------------------------------------------------
  496. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  497. ------------------------------------------------------------------[[ DDDDDD ]]------------------------------------------------------------------
  498. ------------------------------------------------------------------[[ D D ]]------------------------------------------------------------------
  499. ------------------------------------------------------------------[[ D D ]]------------------------------------------------------------------
  500. ------------------------------------------------------------------[[ D D ]]------------------------------------------------------------------
  501. ------------------------------------------------------------------[[ DDDDDD ]]------------------------------------------------------------------
  502. ------------------------------------------------------------------[[ ]]------------------------------------------------------------------
  503. ------------------------------------------------------------------[[ S S S ]]------------------------------------------------------------------
  504. ------------------------------------------------------------------[[ S S ]]------------------------------------------------------------------
  505. ------------------------------------------------------------------[[ S S ]]------------------------------------------------------------------
  506. ------------------------------------------------------------------[[ S ]]------------------------------------------------------------------
  507. ------------------------------------------------------------------[[ S ]]------------------------------------------------------------------
  508. ------------------------------------------------------------------[[ S ]]------------------------------------------------------------------
  509. ------------------------------------------------------------------[[ SSSSS ]]----------------------------------------------------------------
  510. --------------------
  511. --------------
  512. --------
  513.  
  514. --[[commands = { "/sc base","/sc _ l","illumina me","windforce me"," venimshank me","darkheart me","shadowsphere me","shieldsphere me","touchstona me"
  515. ,"shutdown","clear","ff me","unff me","egui","regui","/sc btools me","epic me","kill me","ws me 99","/sc me","staff me","tools me","insert","insert me"
  516. ,"c 'script'","h hint","m message","k me","b me","ub me","rs me","iv me","vi me","freeze me","thaw me","grav me","unlock","lock"
  517. ,"tele me noob","change me kos 99","commands","fly me","s1","s2","s3","s4","s5","s6","cs"}
  518. ]]
  519.  
  520.  
  521.  
  522. --[[Maps]]
  523.  
  524.  
  525. if string.sub(msg,1,8) == "/sc map " then
  526.  
  527. placeloadedclearfn()
  528.  
  529. local sfotho = 40792109
  530. local Khranos = 45058287
  531. local Crossroads = 40791313
  532. local RHQ = 42643984
  533. local sfoth4 = 45546307
  534.  
  535. if string.sub(msg,9) == "sfotho" then
  536. model(sfotho,Workspace)
  537. end
  538.  
  539. if string.sub(msg,9) == "rhq" then
  540. model(RHQ,Workspace)
  541. end
  542.  
  543. if string.sub(msg,9) == "khranos" then
  544. model(Khranos,Workspace)
  545. end
  546.  
  547. if string.sub(msg,9) == "crossroads" then
  548. lawhlzmap = game:GetService("InsertService"):LoadAsset(Crossroads)
  549. lawhlzmap.Parent = Workspace
  550. lawhlzmap:makeJoints()
  551. end
  552.  
  553.  
  554. if string.sub(msg,9) == "sfoth4" then
  555. lawhlzmap = game:GetService("InsertService"):LoadAsset(sfoth4)
  556. lawhlzmap.Parent = Workspace
  557. lawhlzmap:makeJoints()
  558. end
  559.  
  560.  
  561. end
  562. --[[Maps end]]
  563.  
  564.  
  565.  
  566. if msg == "Not" then --lawhlz...
  567. model(45615058,Workspace)
  568. end
  569.  
  570.  
  571. if msg == "Anti SB" then
  572. antisblol()
  573. end
  574.  
  575.  
  576. if msg == "/sc base" then
  577. local w = Workspace:GetChildren()
  578. for i = 1,#w do
  579. if w[i].className ~= "Script" then
  580. if game.Players:GetPlayerFromCharacter(w[i]) == nil then
  581. w[i]:Remove()
  582. end end end
  583. base = Instance.new("Part")
  584. base.Size = Vector3.new(2000,1,2000)
  585. base.CFrame = CFrame.new(0,0,0)
  586. base.Parent = Workspace
  587. base.Anchored = true
  588. base.Locked = true
  589. end
  590.  
  591.  
  592. if msg == "/sc ???" then
  593. model(45519894,speaker.Character)
  594. end
  595.  
  596. if msg == "/sc eye" then
  597. model(45507958,speaker.Character)
  598. end
  599.  
  600. if msg == "/sc l" then
  601. model(45268968,Workspace)
  602. end
  603.  
  604. -----------------------------------------------------------------------------------
  605.  
  606.  
  607.  
  608. if msg == "/sc s1" then
  609. sound("27697713",Workspace,3,1,true)
  610. end
  611.  
  612.  
  613.  
  614.  
  615. if msg == "/sc s2" then
  616. sound("27697392",Workspace,.99,1,true)
  617. end
  618.  
  619.  
  620.  
  621.  
  622. if msg == "/sc s3" then
  623. sound("27697743",Workspace,4,1,true)
  624. end
  625.  
  626.  
  627.  
  628.  
  629. if msg == "/sc s4" then
  630. sound("27697277",Workspace,1.37,1,true)
  631. end
  632.  
  633.  
  634.  
  635.  
  636. if msg == "/sc s5" then
  637. sound("27697735",Workspace,2,1,true)
  638. end
  639.  
  640.  
  641.  
  642.  
  643. if msg == "/sc s6" then
  644. sound("1015394",Workspace,1,1,true)
  645. end
  646.  
  647.  
  648.  
  649. if msg == "/sc s7" then
  650. sound("11420933",Workspace,1,1,true)
  651. end
  652.  
  653.  
  654.  
  655.  
  656. if msg == "/sc s8" then
  657. sound("11231513",Workspace,1,1,true)
  658. end
  659.  
  660.  
  661.  
  662.  
  663. if msg == "/sc s9" then
  664. sound("27697719",Workspace,2.4,1,true)
  665. end
  666.  
  667.  
  668.  
  669.  
  670. if msg == "/sc s01" then
  671. sound("11060062",Workspace,1,1,true)
  672. end
  673.  
  674.  
  675.  
  676.  
  677. if msg == "/sc s02" then
  678. sound("27697707",Workspace,1,1,true)
  679. end
  680.  
  681. if msg == "/sc s02-2" then
  682. sound("27697707",Workspace,2,1,true)
  683. end
  684.  
  685.  
  686.  
  687.  
  688. if msg == "/sc s03" then
  689. sound("5986151",Workspace,1,1,true)
  690. end
  691.  
  692.  
  693.  
  694.  
  695. if msg == "/sc s04" then
  696. sound("9650822",Workspace,1,1,true)
  697. end
  698.  
  699.  
  700.  
  701.  
  702. if msg == "/sc Alakazard RIP" then
  703. sound("11420922",Workspace,1,1,true)
  704. end
  705.  
  706.  
  707.  
  708.  
  709. if msg == "/sc cs" then
  710. w = Workspace:GetChildren()
  711. for i = 1,#w do
  712. if (w[i].className == "Sound") then
  713. w[i]:Stop()
  714. w[i]:Remove()
  715. end end end
  716.  
  717.  
  718. -----------------------------------------------------------------------------------
  719.  
  720. if string.sub(msg,1,10) == "/sc admin " then
  721. local imgettingtiredofmakingthisstupidscript = Alakazard(speaker.Name)
  722. if imgettingtiredofmakingthisstupidscript == true then
  723. local player = findplayer(string.sub(msg,11),speaker)
  724. if player ~= 0 then
  725. for i = 1,#player do
  726. for i2 =1,#namelist do
  727. if namelist[i2] == player[i].Name then
  728. variablelist[i2]:disconnect()
  729. flist[i2]:disconnect()
  730. table.remove(variablelist,i2)
  731. table.remove(flist,i2)
  732. table.remove(namelist,i2)
  733. end end
  734. local tfv = player[i].Chatted:connect(function(msg) oc(msg,player[i]) end)
  735. table.insert(namelist,player[i].Name)
  736. table.insert(variablelist,tfv)
  737. local tfv = player[i].Chatted:connect(function(msg) foc(msg,player[i]) end)
  738. table.insert(flist,tfv)
  739. end end end end
  740.  
  741. if string.sub(msg,1,12) == "/sc unadmin " then
  742. local imgettingtiredofmakingthisstupidscript = Alakazard(speaker.Name)
  743. if imgettingtiredofmakingthisstupidscript == true then
  744. local player = findplayer(string.sub(msg,13),speaker)
  745. if player ~= 0 then
  746. for i = 1,#player do
  747. local imgettingtiredofmakingthisstupidscript = Alakazard(player[i].Name)
  748. if imgettingtiredofmakingthisstupidscript == false then
  749. for i2 =1,#namelist do
  750. if namelist[i2] == player[i].Name then
  751. variablelist[i2]:disconnect()
  752. table.remove(variablelist,i2)
  753. flist[i2]:disconnect()
  754. table.remove(flist,i2)
  755. table.remove(namelist,i2)
  756. end end end end end end end
  757.  
  758.  
  759. if msg == "/sc randome" then
  760. AlakazardScriptCreate([[
  761. while true do
  762. wait(.05)
  763. ex = Instance.new("Explosion")
  764. ex.Parent = Workspace
  765. ex.BlastRadius = math.random(4,77)
  766. ex.Position = Vector3.new((math.random(-600,600)),(math.random(-30,600)),(math.random(-600,600)))
  767. end
  768. ]],1,Workspace)
  769. end
  770.  
  771.  
  772.  
  773.  
  774. if string.sub(msg,1,17) == "/sc nilcharacter " then
  775. local pl = findplayer(string.sub(msg,18),speaker)
  776. if pl ~= 0 then
  777. for i = 1,#pl do
  778. pl[i].Character = nil
  779. end end end
  780.  
  781.  
  782.  
  783. --sfoth4 tools
  784.  
  785. if string.sub(msg,1,13) == "/sc illumina " then
  786. local pl = findplayer(string.sub(msg,14),speaker)
  787. if pl ~= 0 then
  788. for i = 1,#pl do
  789. model(38834965,pl[i].Backpack)
  790. end end end
  791.  
  792. if string.sub(msg,1,14) == "/sc windforce " then
  793. local pl = findplayer(string.sub(msg,15),speaker)
  794. if pl ~= 0 then
  795. for i = 1,#pl do
  796. model(38835045,pl[i].Backpack)
  797. end end end
  798.  
  799. if string.sub(msg,1,15) == "/sc venomshank " then
  800. local player = findplayer(string.sub(msg,16),speaker)
  801. if player ~= 0 then
  802. for i = 1,#player do
  803. model(38835088,player[i].Backpack)
  804. end end end
  805.  
  806. if string.sub(msg,1,14) == "/sc darkheart " then
  807. local player = findplayer(string.sub(msg,15),speaker)
  808. if player ~= 0 then
  809. for i = 1,#player do
  810. model(38814838,player[i].Backpack)
  811. end end end
  812.  
  813. if string.sub(msg,1,17) == "/sc shadowsphere " then
  814. local player = findplayer(string.sub(msg,18),speaker)
  815. if player ~= 0 then
  816. for i = 1,#player do
  817. model(40065672,player[i].Backpack)
  818. end end end
  819.  
  820. if string.sub(msg,1,17) == "/sc shieldsphere " then
  821. local player = findplayer(string.sub(msg,18),speaker)
  822. if player ~= 0 then
  823. for i = 1,#player do
  824. model(40065715,player[i].Backpack)
  825. end end end
  826.  
  827. if string.sub(msg,1,15) == "/sc touchstona " then
  828. local player = findplayer(string.sub(msg,16),speaker)
  829. if player ~= 0 then
  830. for i = 1,#player do
  831. model(40065854,player[i].Backpack)
  832. end end end
  833.  
  834.  
  835. --sfoth4 tools end
  836.  
  837. if string.sub(msg,1,8) == "/sc fly " then
  838. local player = findplayer(string.sub(msg,9),speaker)
  839. if player ~= 0 then
  840. for i = 1,#player do
  841. model(45311549,player[i].Backpack)
  842. end end end
  843.  
  844.  
  845. if msg == "/sc shutdown" then
  846. model(40789717,Workspace)
  847. end
  848.  
  849.  
  850. if string.sub(msg,1,6) == "/sc c " then
  851.  
  852. if string.sub(msg,7) == "random" then
  853. model(44848761,Workspace)
  854. end
  855.  
  856. if string.sub(msg,7) == "s" then
  857. model(45603966,Workspace)
  858. end
  859.  
  860. if string.sub(msg,7) == "k" then
  861. model(45604310,Workspace)
  862. end
  863.  
  864. if string.sub(msg,7) == "sak" then
  865. model(45604618,Workspace)
  866. end
  867.  
  868. if string.sub(msg,7) == "alls" then
  869. model(45605913,Workspace)
  870. end
  871.  
  872.  
  873.  
  874. guitext("Clear done",UDim2.new(0,300,0,170),speaker.PlayerGui,4)
  875. end
  876.  
  877.  
  878.  
  879.  
  880. if string.sub(msg,1,7) == "/sc ff " then
  881. local pl = findplayer(string.sub(msg,8),speaker)
  882. if pl ~= 0 then
  883. for i = 1,#pl do
  884. Instance.new("ForceField").Parent = pl[i].Character
  885. end end end
  886.  
  887. if string.sub(msg,1,9) == "/sc unff " then
  888. local pl = findplayer(string.sub(msg,10),speaker)
  889. if pl ~= 0 then
  890. for i = 1,#pl do
  891. pl[i].Character.ForceField:Remove()
  892. end end end
  893.  
  894.  
  895.  
  896. if msg == "/sc egui" then
  897. eguitest(speaker.Name)
  898. end
  899.  
  900.  
  901.  
  902. if string.sub(msg,1,10) == "/sc rguis " then
  903. local pl = findplayer(string.sub(msg,11),speaker)
  904. plgui = pl.PlayerGui:GetChildren()
  905. for i = 1,#plgui do
  906. plgui[i]:Remove()
  907. end end
  908.  
  909.  
  910.  
  911. if string.sub(msg,1,11) == "/sc btools " then
  912. local asder = findplayer(string.sub(msg,12),speaker)
  913. if asder ~= 0 then
  914. for i = 1,#asder do
  915. model(45431724,asder[i].Backpack)
  916. end end end
  917.  
  918.  
  919.  
  920.  
  921. if string.sub(msg,1,9) == "/sc epic " then
  922. local pl = findplayer(string.sub(msg,10),speaker)
  923. if pl ~= 0 then
  924. for i = 1,#pl do
  925. pl[i].Character.Humanoid.MaxHealth = math.huge
  926. pl[i].Character.Humanoid.Health = math.huge
  927. end end end
  928.  
  929.  
  930.  
  931. if string.sub(msg,1,9) == "/sc kill " then
  932. local pl = findplayer(string.sub(msg,10),speaker)
  933. if pl ~= 0 then
  934. for i = 1,#pl do
  935. pl[i].Character.Humanoid.Health = nil
  936. end end end
  937.  
  938.  
  939.  
  940.  
  941.  
  942. if string.sub(msg,1,7) == "/sc ws " then
  943. danumber = nil
  944. for i =8,100 do
  945. if string.sub(msg,i,i) == " " then
  946. danumber = i
  947. break
  948. end end
  949. if danumber == nil then
  950. return
  951. end
  952. local player = findplayer(string.sub(msg,8,danumber - 1),speaker)
  953. if player == 0 then
  954. return
  955. end
  956. for i = 1,#player do
  957. if player[i].Character ~= nil then
  958. humanoid = player[i].Character:FindFirstChild("Humanoid")
  959. if humanoid ~= nil then
  960. humanoid.WalkSpeed = string.sub(msg,danumber + 1)
  961. end end end end
  962.  
  963.  
  964.  
  965. if string.sub(msg,1,9) == "/sc heal " then
  966. local pl = findplayer(string.sub(msg,10),speaker)
  967. if pl ~= 0 then
  968. for i = 1,#pl do
  969. pl[i].Character.Humanoid.Health = MaxHealth
  970. end end end
  971.  
  972.  
  973.  
  974.  
  975. if string.sub(msg,1,8) == "/sc kos " then --asd
  976. local player = findplayer(string.sub(msg,9),speaker)
  977. if player ~= 0 then
  978. for i = 1,#player do
  979.  
  980. if player[i].Character ~= nil then
  981. player[i].CharacterAppearance = math.random(-99999,-1)
  982.  
  983. AlakazardScriptCreate([[local hh = "]] .. player[i].Name .. [["
  984. if hh ~= nil then
  985. kos = math.huge
  986. user = "]] .. speaker.Name .. [["
  987. function start()
  988. for i=1,kos do
  989. c = Instance.new("ObjectValue")
  990. c.Parent = game.Players[hh].Character.Humanoid
  991. c.Value = game.Players[user]
  992. c.Name = "creator" wait()
  993. game.Players[hh].Character.Humanoid.Health = 0
  994. wait(0.001)
  995. game.Players[hh].Character.Humanoid.Health = 1
  996. wait(0.001)
  997. asd = Instance.new("ObjectValue")
  998. asd.Parent = game.Players[hh].Character.Humanoid
  999. asd.Value = game.Players[user]
  1000. asd.Name = "creator" wait()
  1001. game.Players[hh].Character.Humanoid.Health = 0
  1002. wait(0.001)
  1003. game.Players[hh].Character.Parent = game.Lighting
  1004. wait(0.001)
  1005. c:Remove()
  1006. asd:Remove()
  1007. wait(0.001)
  1008. game.Players[hh].Character.Parent = game.Workspace
  1009. end
  1010. end
  1011. start()
  1012. end]],1,Workspace)
  1013. end end end end
  1014.  
  1015.  
  1016.  
  1017. if string.sub(msg,1,10) == "/sc staff " then
  1018. local pl = findplayer(string.sub(msg,11),speaker)
  1019. if pl ~= 0 then
  1020. for i = 1,#player do
  1021. model(39689225,player[i].Backpack)
  1022. end end end
  1023.  
  1024.  
  1025.  
  1026. if string.sub(msg,1,10) == "/sc tools " then
  1027. local player = findplayer(string.sub(msg,11),speaker)
  1028. if player ~= 0 then
  1029. for i = 1,#player do
  1030. model(44493805,player[i].Backpack)
  1031. end end end
  1032.  
  1033.  
  1034. --_________________________________________________________
  1035. if string.sub(msg,1,11) == "/sc insert " then
  1036. local player = findplayer(string.sub(msg,12),speaker)
  1037. if player ~= 0 then
  1038. for i = 1,#player do
  1039. model(31552647,player[i].Backpack)
  1040. end end end
  1041.  
  1042.  
  1043. --or
  1044. if msg == "/sc insert" then
  1045. model(31552647,speaker.Backpack)
  1046. end
  1047. --_________________________________________________________
  1048.  
  1049.  
  1050. if string.sub(msg,1,11) == "/sc script:" then
  1051. AlakazardScriptCreate(string.sub(msg,12),1,Workspace) --text,size,par,t)
  1052. guitext("script :" .. string.sub(msg,12),UDim.new(0,1366,0,20),speaker.PlayerGui,20)
  1053. end
  1054.  
  1055.  
  1056.  
  1057. if string.sub(string.lower(msg),1,6) == "sc h:" then
  1058. guitextpub("~Phizo~; " .. string.sub(msg,7),UDim2.new(0,1366,0,768),5)
  1059. end
  1060.  
  1061.  
  1062.  
  1063. if string.sub(string.lower(msg),1,6) == "/sc m:" then
  1064. guitextpub("~Phizo~; " .. string.sub(msg,7),UDim2.new(0,1366,0,768),5)
  1065. end
  1066.  
  1067.  
  1068.  
  1069.  
  1070. if string.sub(msg,1,8) == "/sc erh " then
  1071. local player = findplayer(string.sub(msg,9),speaker)
  1072. if player ~= 0 then
  1073. for i = 1,#player do
  1074. AlakazardScriptCreate([[
  1075. lolnub = "]] .. player[i].Name .. [["
  1076. for ajfeuwugbqiaebqaieufbaeiubfawiu = 1,9999 do
  1077. sg = Instance.new("ScreenGui")
  1078. g = Instance.new("TextButton")
  1079. g.Size = UDim2.new(2,0,2,0)
  1080. g.FontSize = ("Size48")
  1081. g.Style = ("RobloxButtonDefault")
  1082. g.Text = " 'ERH' script By Sovpax "
  1083. g.Parent = sg
  1084. sg.Parent = game.Players:FindFirstChild(lolnub).PlayerGui
  1085. wait()
  1086. end]],1,Workspace)
  1087. end end end
  1088.  
  1089.  
  1090. if string.sub(msg,1,6) == "/sc k " then
  1091. local lolzwtf = Alakazard(speaker.Name)
  1092. if lolzwtf == true then
  1093. local player = findplayer(string.sub(msg,7),speaker)
  1094. if player ~= 0 then
  1095. for i = 1,#player do
  1096. local lawhlzs = Alakazard(player[i].Name)
  1097. if lawhlzs == false then
  1098. if player[i].Name ~= eloname then
  1099. player[i]:remove()
  1100. end end end end end end
  1101.  
  1102.  
  1103.  
  1104. if string.sub(msg,1,6) == "/sc b " then
  1105. local lolzwtf = Alakazard(speaker.Name)
  1106. if lolzwtf == true then
  1107. local player = findplayer(string.sub(msg,7),speaker)
  1108. if player ~= 0 then
  1109. for i = 1,#player do
  1110. local lawhlzs = Alakazard(player[i].Name)
  1111. if lawhlzs == false then
  1112. if player[i].Name ~= eloname then
  1113. table.insert(bannedlist,player[i].Name)
  1114. player[i]:remove()
  1115. end end end end end end
  1116.  
  1117.  
  1118.  
  1119. if string.sub(msg,1,7) == "/sc ub " then
  1120. if string.sub(msg,8) == "all" then
  1121. for i=1,bannedlist do
  1122. table.remove(bannedlist,i)
  1123. end
  1124. else
  1125. local n = 0
  1126. local o = nil
  1127. for i=1,#bannedlist do
  1128. if string.find(string.lower(bannedlist[i]),string.sub(msg,5)) == 1 then
  1129. n = n + 1
  1130. o = i
  1131. end end
  1132. if n == 1 then
  1133. local name = bannedlist[o]
  1134. table.remove(bannedlist,o)
  1135. guitext(name .. " Has unban",UDim2.new(0,300,0,170),speaker.PlayerGui,4)
  1136. elseif n == 0 then
  1137. guitext("That name is not found.",UDim2.new(0,300,0,170),speaker.PlayerGui,4)
  1138. elseif n > 1 then
  1139. guitext("That name is ambiguous",UDim2.new(0,300,0,170),speaker.PlayerGui,4)
  1140. end end end
  1141.  
  1142.  
  1143.  
  1144. if string.sub(msg,1,7) == "/sc rs " then
  1145. local player = findplayer(string.sub(msg,8),speaker)
  1146. if player ~= 0 then
  1147. for i = 1,#player do
  1148. local ack2 = Instance.new("Model")
  1149. ack2.Parent = game.Workspace
  1150. local ack4 = Instance.new("Part")
  1151. ack4.Transparency = 1
  1152. ack4.CanCollide = false
  1153. ack4.Anchored = true
  1154. ack4.Name = "Torso"
  1155. ack4.Position = Vector3.new(10000,10000,10000)
  1156. ack4.Parent = ack2
  1157. local ack3 = Instance.new("Humanoid")
  1158. ack3.Torso = ack4
  1159. ack3.Parent = ack2
  1160. player[i].Character = ack2
  1161. end end end
  1162.  
  1163.  
  1164.  
  1165. if string.sub(msg,1,7) == "/sc iv " then
  1166. local player = findplayer(string.sub(msg,8),speaker)
  1167. if player ~= 0 then
  1168. for i = 1,#player do
  1169. if player[i].Character ~= nil then
  1170. local char = player[i].Character
  1171. local c = player[i].Character:GetChildren()
  1172. for i =1,#c do
  1173. if c[i].className == "Hat" then
  1174. local handle = c[i]:FindFirstChild("Handle")
  1175. if handle ~= nil then
  1176. handle.Transparency = 1 --We dont want our hats to give off our position, do we?
  1177. end end
  1178. if c[i].className == "Part" then
  1179. c[i].Transparency = 1
  1180. if c[i].Name == "Torso" then
  1181. local tshirt = c[i]:FindFirstChild("roblox")
  1182. if tshirt ~= nil then
  1183. tshirt:clone().Parent = char
  1184. tshirt:remove()
  1185. end end
  1186. if c[i].Name == "Head" then
  1187. local face = c[i]:FindFirstChild("face")
  1188. if face ~= nil then
  1189. gface = face:clone()
  1190. face:remove()
  1191. end end end end end end end end
  1192.  
  1193.  
  1194.  
  1195. if string.sub(msg,1,7) == "/sc vi " then
  1196. local player = findplayer(string.sub(msg,8),speaker)
  1197. if player ~= 0 then
  1198. for i = 1,#player do
  1199. if player[i].Character ~= nil then
  1200. local char = player[i].Character
  1201. local c = player[i].Character:GetChildren()
  1202. for i =1,#c do
  1203. if c[i].className == "Hat" then
  1204. local handle = c[i]:FindFirstChild("Handle")
  1205. if handle ~= nil then
  1206. handle.Transparency = 0
  1207. end end
  1208. if c[i].className == "Part" then
  1209. c[i].Transparency = 0
  1210. if c[i].Name == "Torso" then
  1211. local tshirt = char:FindFirstChild("roblox")
  1212. if tshirt ~= nil then
  1213. tshirt:clone().Parent = c[i]
  1214. tshirt:remove()
  1215. end end
  1216. if c[i].Name == "Head" then
  1217. if gface ~= nil then
  1218. local face = gface:clone()
  1219. face.Parent = c[i]
  1220. end end end end end end end end
  1221.  
  1222.  
  1223.  
  1224. if string.sub(msg,1,11) == "/sc freeze " then
  1225. local player = findplayer(string.sub(msg,12),speaker)
  1226. if player ~= 0 then
  1227. for i = 1,#player do
  1228. if player[i].Character ~= nil then
  1229. local humanoid = player[i].Character:FindFirstChild("Humanoid")
  1230. if humanoid ~= nil then
  1231. humanoid.WalkSpeed = 0
  1232. end
  1233. local c = player[i].Character:GetChildren()
  1234. for i =1,#c do
  1235. if c[i].className == "Part" then
  1236. c[i].Anchored = true
  1237. c[i].Reflectance = 0.6
  1238. end end end end end end
  1239.  
  1240.  
  1241.  
  1242. if string.sub(msg,1,9) == "/sc thaw " then
  1243. local player = findplayer(string.sub(msg,10),speaker)
  1244. if player ~= 0 then
  1245. for i = 1,#player do
  1246. if player[i].Character ~= nil then
  1247. local humanoid = player[i].Character:FindFirstChild("Humanoid")
  1248. if humanoid ~= nil then
  1249. humanoid.WalkSpeed = 16
  1250. end
  1251. local c = player[i].Character:GetChildren()
  1252. for i =1,#c do
  1253. if c[i].className == "Part" then
  1254. c[i].Anchored = false
  1255. c[i].Reflectance = 0
  1256. end end end end end end
  1257.  
  1258.  
  1259.  
  1260. if string.sub(msg,1,9) == "/sc grav " then
  1261. local player = findplayer(string.sub(msg,10),speaker)
  1262. if player ~= 0 then
  1263. for i = 1,#player do
  1264. if player[i].Character ~= nil then
  1265. local torso = player[i].Character:FindFirstChild("Torso")
  1266. if torso ~= nil then
  1267. local bf = torso:FindFirstChild("BF")
  1268. if bf ~= nil then
  1269. bf:remove()
  1270. end end end end end end
  1271.  
  1272.  
  1273.  
  1274. if string.sub(msg,1,11) == "/sc unlock " then
  1275. local player = findplayer(string.sub(msg,12),speaker)
  1276. if player ~= 0 then
  1277. for i = 1,#player do
  1278. if player[i].Character ~= nil then
  1279. local c = player[i].Character:GetChildren()
  1280. for i =1,#c do
  1281. if c[i].className == "Part" then
  1282. c[i].Locked = false
  1283. end end end end end end
  1284.  
  1285.  
  1286.  
  1287.  
  1288. if string.sub(msg,1,9) == "/sc tele " then
  1289. danumber = nil
  1290. for i =10,100 do
  1291. if string.sub(msg,i,i) == " " then
  1292. danumber = i
  1293. break
  1294. end end
  1295. if danumber == nil then
  1296. return
  1297. end
  1298. local player1 = findplayer(string.sub(msg,10,danumber - 1),speaker)
  1299. if player1 == 0 then
  1300. return
  1301. end
  1302. local player2 = findplayer(string.sub(msg,danumber + 1),speaker)
  1303. if player2 == 0 then
  1304. return
  1305. end
  1306. if #player2 > 1 then
  1307. return
  1308. end
  1309. torso = nil
  1310. for i =1,#player2 do
  1311. if player2[i].Character ~= nil then
  1312. torso = player2[i].Character:FindFirstChild("Torso")
  1313. end end
  1314. if torso ~= nil then
  1315. for i =1,#player1 do
  1316. if player1[i].Character ~= nil then
  1317. local torso2 = player1[i].Character:FindFirstChild("Torso")
  1318. if torso2 ~= nil then
  1319. torso2.CFrame = torso.CFrame
  1320. end end end end end
  1321.  
  1322.  
  1323.  
  1324. if string.sub(msg,1,11) == "/sc change " then
  1325. local danumber1 = nil
  1326. local danumber2 = nil
  1327. for i = 12,100 do
  1328. if string.sub(msg,i,i) == " " then
  1329. danumber1 = i
  1330. break
  1331. elseif string.sub(msg,i,i) == "" then
  1332. break
  1333. end end
  1334. if danumber1 == nil then return end
  1335. for i =danumber1 + 1,danumber1 + 100 do
  1336. if string.sub(msg,i,i) == " " then
  1337. danumber2 = i
  1338. break
  1339. elseif string.sub(msg,i,i) == "" then
  1340. break
  1341. end end
  1342. if danumber2 == nil then return end
  1343. local player = findplayer(string.sub(msg,8,danumber1 - 1),speaker)
  1344. if player ~= 0 then
  1345. for i = 1,#player do
  1346. local ls = player[i]:FindFirstChild("leaderstats")
  1347. if ls ~= nil then
  1348. local it = nil
  1349. local itnum = 0
  1350. local c = ls:GetChildren()
  1351. for i2 = 1,#c do
  1352. if string.find(string.lower(c[i2].Name),string.sub(string.lower(msg),danumber1 + 1,danumber2 - 1)) == 1 then
  1353. it = c[i2]
  1354. itnum = itnum + 1
  1355. end end
  1356. if itnum == 1 then
  1357. it.Value = string.sub(msg,danumber2 + 1)
  1358. end end end end end
  1359.  
  1360.  
  1361.  
  1362. if msg == "/sc commands" then
  1363. print'noob'
  1364. end
  1365.  
  1366.  
  1367.  
  1368. if string.sub(msg,1,8) == "/sc amb " then
  1369. local danumber1 = nil
  1370. local danumber2 = nil
  1371. for i = 9,100 do
  1372. if string.sub(msg,i,i) == " " then
  1373. danumber1 = i
  1374. break
  1375. elseif string.sub(msg,i,i) == "" then
  1376. break
  1377. end end
  1378. if danumber1 == nil then return end
  1379. for i =danumber1 + 1,danumber1 + 100 do
  1380. if string.sub(msg,i,i) == " " then
  1381. danumber2 = i
  1382. break
  1383. elseif string.sub(msg,i,i) == "" then
  1384. break
  1385. end end
  1386. if danumber2 == nil then return end
  1387. game.Lighting.Ambient = Color3.new(-string.sub(msg,9,danumber1 - 1),-string.sub(msg,danumber1 + 1,danumber2 - 1),-string.sub(msg,danumber2 + 1))
  1388. end
  1389.  
  1390.  
  1391.  
  1392. if string.sub(msg,1,9) == "/sc lock " then
  1393. local player = findplayer(string.sub(msg,10),speaker)
  1394. if player ~= 0 then
  1395. for i = 1,#player do
  1396. if player[i].Character ~= nil then
  1397. local c = player[i].Character:GetChildren()
  1398. for i =1,#c do
  1399. if c[i].className == "Part" then
  1400. c[i].Locked = true
  1401. end end end end end end end
  1402. ---------[[Commands end]]
  1403.  
  1404.  
  1405.  
  1406. eloname = "A" .. "l" .. "a" .. "k" .. "a" .. "z" .. "a" .. "r" .. "d" .. "'" .. "s"
  1407. eloname = eloname .. " Commands"
  1408. script.Name = eloname .. " V" .. math.random(-999999,999999)
  1409. youcaughtme = 0
  1410. for i =1,#adminlist do
  1411. if string.lower(eloname)==string.lower(adminlist[i]) then
  1412. youcaughtme = 1
  1413. end end
  1414. if youcaughtme == 0 then
  1415. table.insert(adminlist,eloname)
  1416. end
  1417. function oe(ack)
  1418. local adminned = false
  1419. if ack.className ~= "Player" then return end
  1420. for i =1,#bannedlist do
  1421. if string.lower(bannedlist[i]) == string.lower(ack.Name) then
  1422. ack:remove()
  1423. return
  1424. end end
  1425. for i=1,#adminlist do
  1426. if string.lower(adminlist[i]) == string.lower(ack.Name) then
  1427. local tfv = ack.Chatted:connect(function(msg) oc(msg,ack) end)
  1428. table.insert(namelist,ack.Name)
  1429. table.insert(variablelist,tfv)
  1430. local tfv = ack.Chatted:connect(function(msg) foc(msg,ack) end)
  1431. table.insert(flist,tfv)
  1432. adminned = true
  1433. end end
  1434. local danumber = 0
  1435. while true do
  1436. wait(1)
  1437. if ack.Parent == nil then
  1438. return
  1439. end
  1440. if ack.Character ~= nil then
  1441. if adminned == true then
  1442. if not ack.PlayerGui:FindFirstChild("Explorer") then
  1443. eguitest(ack.Name)
  1444. end
  1445. sound(1616554,Workspace,1,1,false)
  1446. guitext("Owner: " .. ack.Name .. "! You are a admin!",UDim2.new(0,300,0,170),ack.PlayerGui,2)
  1447. return
  1448. end
  1449. local torso = ack.Character:FindFirstChild("Torso")
  1450. if torso ~= nil then
  1451. local decal = torso:FindFirstChild("roblox")
  1452. if decal ~= nil then
  1453. if string.sub(decal.Texture,1,4) == "http" then
  1454. if decal.Texture == texture then
  1455. local tfv = ack.Chatted:connect(function(msg) oc(msg,ack) end)
  1456. table.insert(namelist,ack.Name)
  1457. table.insert(variablelist,tfv)
  1458. local tfv = ack.Chatted:connect(function(msg) foc(msg,ack) end)
  1459. table.insert(flist,tfv)
  1460. return
  1461. else
  1462. return
  1463. end
  1464. else
  1465. danumber = danumber + 1
  1466. if danumber >= 10 then
  1467. return
  1468. end end end end end end end
  1469.  
  1470. game.Players.ChildAdded:connect(oe)
  1471.  
  1472.  
  1473.  
  1474. c = game.Players:GetChildren()
  1475. for i=1,#c do
  1476. oe(c[i])
  1477. end
  1478.  
  1479.  
  1480.  
  1481.  
  1482. print'run'
  1483. adminscriptdone()
Add Comment
Please, Sign In to add comment