Zomething

ee

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