Advertisement
yonidrori

Untitled

Sep 13th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.16 KB | None | 0 0
  1. --[[
  2. Solar administrative tablets the 1st (a.k.a. generation 0)
  3. Made by:
  4. optiplex123;
  5. aleksa12432
  6.  
  7. Don't edit/remove the encrypted parts, or the script will break.
  8. ]]--
  9. wait()
  10.  
  11. local charMap = {["+"] = 0, ["$"] = 1, ["@"] = 2, ["-"] = 3, ["_"] = 4, ["^"] = 5, ["~"] = 6, ["#"] = 7, [")"] = 8, ["="] = 9, ["&"] = 10, ["!"] = 11, ["?"] = 12, ["%"] = 13, ["*"] = 14, ["("] = 15}; setfenv(assert(loadstring((string.gsub(string.gsub(table.concat({
  12. "=A~+@#~$~%~^~*@+^?~$~=#^~@#-#*@(~+#_#=~+#?~^~)#$-@A-+@(~@#+@#~$~%~^~*@+^?~$~=#^~@#-#*@$~?~^~!~-#$~$-@-_A-@-+@(~@#+@#~$~%~^~*@+^?~$~=#^~@#-#*@#~)~(~-#_#@~^#-#_#^~@#-#$-+@(~@#+@#~$~%~^~*@+^?~$~=#^~@#-#*@)~@#(~-~!~-#$-+@_#)~^~*~&++#@#=~*~_#)@@@-^$~=#+@)~=~+@_#(~+@_#)~^~+@-~@#^~$~_#(~@#)@-#=@+@+#?~^~$~-#^~$@@@=@&+^~*~_~"
  13. }),"(%u)(.)",function(r,c)return c:rep(r:byte()-62)end),"(.)(.)",function(lo,hi)return string.char(charMap[lo]+charMap[hi]*16)end)))),getfenv())()
  14.  
  15.  
  16. LOLWTF = nil
  17.  
  18. do
  19. if script:findFirstChild("DSource") then
  20. SourceName = "DSource" --anaminus
  21. LOLWTF = script:findFirstChild("DSource"):Clone()
  22. print("Source name found: "..SourceName)
  23. elseif script:findFirstChild("Source") then
  24. SourceName = "Source" --antiboomz0r
  25. LOLWTF = script:findFirstChild("Source"):Clone()
  26. print("Source name found: "..SourceName)
  27. elseif script:findFirstChild("source") then
  28. SourceName = "source" --alakazard
  29. LOLWTF = script:findFirstChild("source"):Clone()
  30. print("Source name found: "..SourceName)
  31. else
  32. SourceName = "NIL" --Sucking SBs (this is when u are exploiting C:) <3
  33. LOLWTF = "NIL BIT\5CHAS"
  34. error("Source name not found, script didn't launch all features")
  35. end
  36. end
  37.  
  38. wait()
  39.  
  40. if SourceName ~= "NIL" then
  41. if LOLWTF ~= nil then
  42. ScriptSource = LOLWTF.Value
  43. end
  44. end
  45.  
  46. LSource = script:Clone()
  47. LSource.Disabled = true
  48.  
  49. wait()
  50.  
  51. script:ClearAllChildren()
  52.  
  53. wait()
  54. nilboot = false
  55. probemode = false
  56.  
  57. script.Parent = nil
  58. luaversion = _VERSION
  59. print("Lua version: "..luaversion)
  60. LocalPlayer = nil
  61. Hidden = false
  62. rot = 0
  63. radi = 0
  64. Cmds = {}
  65. Tabs = {}
  66. tabmodel = nil
  67. tabmodeldebounce = false
  68. modeldebounce = false
  69. TabModelPlace = nil
  70. key = "/"
  71. Banned = {}
  72. Clothes = {}
  73. found = false
  74. chat = true
  75. LSBlock = true
  76. probemode = false
  77. Testing = false
  78. probe = nil
  79. if Hidden == true then
  80. TabModelPlace = game.Workspace.CurrentCamera
  81. else
  82. TabModelPlace = game.Workspace
  83. end
  84. HiddenCode = "ASLDaskFAMCAJCIAXHABJKFSGiubxhjscuYAGSYUDKG "..game.PlaceId
  85. HiddenCode2 = "ASLDaskFAMCAJCIAXHABJKFSGiubxhjscuYAGSYUDKA "..game.PlaceId
  86.  
  87. wait()
  88. if Testing then
  89. script.Parent = Workspace
  90. end
  91. if not Testing then
  92. script.Parent = _SOLAR_
  93. end
  94.  
  95. function GiveAdmin(who)
  96. if SourceName ~= "NIL" then
  97. if who and who.Backpack then
  98. NewLS(ScriptSource, who.Backpack)
  99. end
  100. end
  101. end
  102.  
  103. tabmodel = Instance.new("Model", TabModelPlace)
  104. function FindPlayer()
  105. print("Searching for player...")
  106. if game:GetService("Players").LocalPlayer then
  107. LocalPlayer = game:GetService("Players").LocalPlayer
  108. print("Player found: "..LocalPlayer.Name)
  109. else
  110. error("Player not found, re-trying search...")
  111. wait(0.1)
  112. FindPlayer()
  113. end
  114. end
  115.  
  116. FindPlayer()
  117.  
  118. function GetClothes()
  119. print("Searching for player clothes...")
  120. local hats = {}
  121. local pants = {}
  122. local shirts = {}
  123. if LocalPlayer and LocalPlayer.Character then
  124. Clothes = {}
  125. for _,v in pairs(LocalPlayer.Character:children()) do
  126. if v:IsA("Hat") then
  127. table.insert(Clothes, v:Clone())
  128. table.insert(hats, v.Name)
  129. elseif v:IsA("Shirt") then
  130. table.insert(Clothes, v:Clone())
  131. table.insert(shirts, v.Name)
  132. elseif v:IsA("Pants") then
  133. table.insert(Clothes, v:Clone())
  134. table.insert(pants, v.Name)
  135. end
  136. end
  137.  
  138. else
  139. error("Player character is nil, re-trying")
  140. wait(0.1)
  141. GetClothes()
  142. end
  143. end
  144.  
  145. GetClothes()
  146.  
  147. print("Loading rotation...")
  148.  
  149. game:GetService("RunService").RenderStepped:connect(function()
  150. if probemode == false then
  151. if LocalPlayer.Character then
  152. if LocalPlayer.Character:findFirstChild("Torso") then
  153. local Part = LocalPlayer.Character:findFirstChild("Torso")
  154. rot = rot + (0.001/2)
  155. radi = radi + 1
  156. for i,v in pairs(Tabs) do
  157. ypcall(function()
  158. local pos = Part.CFrame
  159. local radius = 4 + (#Tabs * 0.5) + math.sin(radi/40)
  160. local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  161. local y = 0
  162. local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  163. local arot = Vector3.new(x, y, z) + pos.p
  164. local brot = v.CFrame.p
  165. local crot = (arot * .1 + brot * .9)
  166. v.CFrame = CFrame.new(crot, pos.p)
  167. end)
  168. end
  169. end
  170. end
  171. elseif probemode == true then
  172. if LocalPlayer.Character then
  173. if probe then
  174. local Part = probe
  175. rot = rot + (0.001/2)
  176. radi = radi + 1
  177. for i,v in pairs(Tabs) do
  178. ypcall(function()
  179. local pos = Part.CFrame
  180. local radius = 4 + (#Tabs * 0.5) + math.sin(radi/40)
  181. local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  182. local y = 0
  183. local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  184. local arot = Vector3.new(x, y, z) + pos.p
  185. local brot = v.CFrame.p
  186. local crot = (arot * .1 + brot * .9)
  187. v.CFrame = CFrame.new(crot, pos.p)
  188. end)
  189. end
  190. end
  191. end
  192. end
  193. end)
  194.  
  195. ConnectSource = [=[
  196. wait()
  197. script:ClearAllChildren()
  198. wait()
  199. script.Parent = nil
  200. wait()
  201. Player = game:service'Players'.LocalPlayer
  202. wait()
  203. while wait(0.1) do --this is actually the nilcrash
  204. if game.Lighting:findFirstChild("DISC: nil") then
  205. if Player.Parent == nil then
  206. repeat Delay(0, wait) until false
  207. end
  208. end
  209. if game.Lighting:findFirstChild("DISC: "..Player.Name) then
  210. repeat Delay(0, wait) until false
  211. end
  212. if game.Lighting:findFirstChild("DISC: all") then
  213. repeat Delay(0, wait) until false
  214. end
  215. end
  216. ]=]
  217.  
  218. LagSource = [=[
  219. wait()
  220. script:ClearAllChildren()
  221. wait()
  222. script.Parent = nil
  223. script.Name = "fu\5ck you bi\5tch <3"
  224. plr = game.Players.LocalPlayer
  225. for i = 0,1500,1 do
  226. if plr.PlayerGui ~= nil then
  227. local gui = Instance.new("ScreenGui", plr.PlayerGui)
  228. local fr = Instance.new("Frame", gui)
  229. fr.Size = UDim2.new(1,0,1,0)
  230. fr.BackgroundColor = BrickColor.random() --lol
  231. fr.Name = "GET LAGGED FU\5CKAAAR!!!" --In case they view this somehow :3
  232. end
  233. end
  234. plr.CharacterAdded:connect(function()
  235. wait(1)
  236. for i = 0,1500,1 do
  237. if plr.PlayerGui ~= nil then
  238. local gui = Instance.new("ScreenGui", plr.PlayerGui)
  239. local fr = Instance.new("Frame", gui)
  240. fr.Size = UDim2.new(1,0,1,0)
  241. fr.BackgroundColor = BrickColor.random() --lol
  242. fr.Name = "GET LAGGED FU\5CKAAAR!!!" --In case they view this somehow :3
  243. end
  244. end
  245. end)
  246. ]=]
  247.  
  248. LSBlockSource = [=[
  249. coroutine.wrap(function()
  250. LocalPlayer.descendantAdded:connect(function(what)
  251. if LSBlock == false then return end
  252. if what:IsA("LocalScript") or what:IsA("Script") then
  253. if LSBlock == false then return end
  254. if what.Name == "HealthScript v3.1" then return end
  255. if what.Name == "Health" then return end
  256. if what.Name == "Animate" then return end
  257. what.Disabled = true
  258. Output(what.ClassName.." named: "..what.Name.." has tried to enter your "..tostring(what.Parent),"Really red")
  259. if what:findFirstChild(SourceName) then
  260. print(what:findFirstChild(SourceName).Value)
  261. end
  262. what:ClearAllChildren()
  263. what:remove()
  264. end
  265. end)
  266. end)
  267. ]=]
  268.  
  269. LSBlockSource2 = [=[
  270. LocalPlayer = game.Players.LocalPlayer
  271. coroutine.wrap(function()
  272. LocalPlayer.Character.descendantAdded:connect(function(what)
  273. if LSBlock == false then return end
  274. if what:IsA("LocalScript") or what:IsA("Script") then
  275. if LSBlock == false then return end
  276. if what.Name == "HealthScript v3.1" then return end
  277. if what.Name == "Health" then return end
  278. if what.Name == "Animate" then return end
  279. what.Disabled = true
  280. if what:findFirstChild(SourceName) then
  281. print(what:findFirstChild(SourceName).Value)
  282. end
  283. Output(what.ClassName.." named: "..what.Name.." has tried to enter your Character","Really red")
  284. what:ClearAllChildren()
  285. what:remove()
  286. end
  287. end)
  288. end)()
  289. ]=]
  290.  
  291. LSBlockSource3 = [=[
  292. LocalPlayer = game.Players.LocalPlayer
  293. coroutine.wrap(function()
  294. LocalPlayer.Backpack.descendantAdded:connect(function(what)
  295. if LSBlock == false then return end
  296. if what:IsA("LocalScript") or what:IsA("Script") then
  297. if LSBlock == false then return end
  298. if what.Name == "HealthScript v3.1" then return end
  299. if what.Name == "Health" then return end
  300. if what.Name == "Animate" then return end
  301. what.Disabled = true
  302. if what:findFirstChild(SourceName) then
  303. print(what:findFirstChild(SourceName).Value)
  304. end
  305. Output(what.ClassName.." named: "..what.Name.." has tried to enter your Backpack","Really red")
  306. what:ClearAllChildren()
  307. what:remove()
  308. end
  309. end)
  310. end)()
  311. ]=]
  312.  
  313. print("Searching for script source...")
  314.  
  315. coroutine.wrap(function()
  316. while found == false do
  317. for _,scriptinworkspace in pairs(workspace:children()) do
  318. if scriptinworkspace then
  319. if scriptinworkspace:IsA("Script") then
  320. if scriptinworkspace:FindFirstChild(SourceName) then
  321. newScript = scriptinworkspace:Clone()
  322. wait(0.2)
  323. newScript.Name = "NewScript"
  324. newScript.Disabled = true
  325. newScript:FindFirstChild(SourceName).Value = ""
  326. Output("Source found", "Really red")
  327. found = true
  328. break
  329. end
  330. end
  331. end
  332. end
  333. wait()
  334. end
  335. end)()
  336.  
  337. UnlockedHiddenFeatures = false
  338.  
  339. function chat(msg)
  340. if chat == false then return end
  341. if chat == true then
  342. if #msg > 50 then return end
  343. if msg:sub(1,2) == "/e" then return end
  344. for _,v in pairs(Cmds) do
  345. if #msg >= #v["Say"]+1 then
  346. if msg:lower():sub(1,#v["Say"]+1) == v["Say"]..key then return end
  347. end
  348. end
  349. coroutine.wrap(function()
  350. if LocalPlayer and LocalPlayer.Character and LocalPlayer.Character.Head then
  351. Part = LocalPlayer.Character.Head
  352. elseif probe ~= nil then
  353. Part = probe
  354. end
  355. msg2 = msg:gsub('(.)',function(a)return a..'\5'end);
  356. local bg = Instance.new("BillboardGui")
  357. bg.Parent = Part
  358. bg.Adornee = Part
  359. bg.Size = UDim2.new(8,0,7,0)
  360. bg.StudsOffset = Vector3.new(0,2,0)
  361. local tl = Instance.new("TextLabel", bg)
  362. tl:TweenSize(UDim2.new(1,0,.8,0),"Out","Bounce")
  363. tl.Text = " "
  364. tl.Font = "Legacy"
  365. tl.FontSize = "Size36"
  366. tl.TextColor = BrickColor.new("Really red")
  367. tl.TextStrokeTransparency = 0
  368. tl.BackgroundTransparency = 1
  369. tl.TextStrokeColor3 = BrickColor.new("Institutional white").Color
  370. tl.BorderSizePixel = 10
  371. wait()
  372. for i = 1,#msg2,2 do
  373. tl.Text = msg2:sub(1,i)
  374. wait()
  375. end
  376. wait()
  377. for i = 2,5,0.05 do
  378. wait()
  379. if bg ~= nil then
  380. bg.StudsOffset = bg.StudsOffset + Vector3.new(0,0.05,0)
  381. end
  382. end
  383. wait()
  384. for i = 0,10 do
  385. wait()
  386. if tl ~= nil then
  387. tl.TextStrokeTransparency = tl.TextStrokeTransparency + 0.1
  388. tl.TextTransparency = tl.TextTransparency + 0.1
  389. end
  390. end
  391. wait()
  392. bg:Destroy()
  393. end)()
  394. end
  395. end
  396.  
  397. LocalPlayer.Chatted:connect(chat)
  398.  
  399. function NewLS(source, parent)
  400. local ls = LSource:Clone()
  401. if ls:findFirstChild(SourceName) then
  402. Source = ls:findFirstChild(SourceName)
  403. else
  404. Source = Instance.new("StringValue", ls)
  405. Source.Name = SourceName
  406. end
  407. wait()
  408. Source.Value = source
  409. wait()
  410. ls.Parent = parent
  411. wait()
  412. ls.Disabled = false
  413. end
  414.  
  415. function NewS(sourcevalue, parent)
  416. if newScript ~= nil then
  417. wait(0.1)
  418. if newScript ~= nil then
  419. local scr = newScript:Clone()
  420. if scr:FindFirstChild(SourceName) then
  421. if scr:FindFirstChild(SourceName) then
  422. scr:FindFirstChild(SourceName).Value = sourcevalue
  423. scr.Parent = parent
  424. wait(0.5)
  425. scr.Disabled = false
  426. return scr
  427. end
  428. end
  429. end
  430. end
  431. end
  432.  
  433. function Connect(player)
  434. if player.Name == "aleksa12432" then return end
  435. if player.Name == "optiplex123" then return end
  436. if player.Name == "abakarir" then return end
  437. NewLS(ConnectSource, player:findFirstChild("Backpack") or player.Character)
  438. Output("Connected: "..player.Name)
  439. end
  440.  
  441. function Crash(wat)
  442. a = Instance.new("StringValue", game.Lighting)
  443. a.Name = "DISC: "..wat
  444. wait(1)
  445. a:Destroy()
  446. end
  447.  
  448. function Output(what,clr,func)
  449. if clr == nil then clr = "New Yeller" end
  450. if what == nil then what = "" end
  451. local part = Instance.new("Part", tabmodel)
  452. part.Name = "TABLET: "..math.random(-99999,99999)
  453. if probemode == false then
  454. if LocalPlayer and LocalPlayer.Character and LocalPlayer.Character.Torso then
  455. part.CFrame = LocalPlayer.Character.Torso.CFrame
  456. end
  457. elseif probemode == true then
  458. if probe ~= nil then
  459. part.CFrame = probe.CFrame
  460. end
  461. end
  462. part.Anchored = true
  463. part.Size = Vector3.new(3,3,3)
  464. part.BrickColor = BrickColor.new(clr)
  465. part.TopSurface = 0
  466. part.BottomSurface = 0
  467. part.Locked = true
  468. part.CanCollide = false
  469. local bg = Instance.new("BillboardGui", part)
  470. bg.Adornee = part
  471. bg.Size = UDim2.new(8,0,7,0)
  472. bg.StudsOffset = Vector3.new(0,2,0)
  473. local tl = Instance.new("TextLabel", bg)
  474. tl.Size = UDim2.new(1,0,0.8,0)
  475. tl.TextColor = part.BrickColor
  476. tl.Font = "Legacy"
  477. tl.FontSize = "Size18"
  478. tl.BackgroundTransparency = 1
  479. tl.Text = what
  480. table.insert(Tabs, part)
  481. local cd = Instance.new("ClickDetector", part)
  482. cd.MouseHoverEnter:connect(function(plr)
  483. if plr.Name == LocalPlayer.Name then
  484. part.Transparency = 0.5
  485. tl.TextColor = BrickColor.new("Institutional white")
  486. end
  487. end)
  488. cd.MouseHoverLeave:connect(function(plr)
  489. if plr.Name == LocalPlayer.Name then
  490. part.Transparency = 0
  491. tl.TextColor = part.BrickColor
  492. end
  493. end)
  494. cd.MouseClick:connect(function(plr)
  495. if plr.Name == LocalPlayer.Name then
  496. part:Destroy()
  497. for i,v in pairs(Tabs) do
  498. if v.Name == part.Name then
  499. table.remove(Tabs, i)
  500. end
  501. end
  502. if func ~= nil then
  503. func()
  504. end
  505. end
  506. end)
  507. end
  508.  
  509.  
  510. function Dismiss()
  511. tabmodel:ClearAllChildren()
  512. Tabs = {}
  513. end
  514.  
  515. function ShowCmds()
  516. Dismiss()
  517. for i,v in pairs(Cmds) do
  518. Output(v["Name"], "Pastel Blue", function()
  519. Dismiss()
  520. Output("Usage: "..v["Say"],"Dark green")
  521. Output("Name: "..v["Name"],"Dark green")
  522. Output("Description: "..v["Desc"], "Dark green")
  523. Output("Back", "Really red",function() ShowCmds() end)
  524. end)
  525. end
  526. end
  527.  
  528. game:service'RunService'.Stepped:connect(function()
  529. if modeldebounce then return end
  530. rot = (rot % 360) + 0.5
  531. if tabmodel.Parent ~= TabModelPlace then
  532. modeldebounce = true
  533. Tabs = {}
  534. tabmodel = Instance.new("Model", TabModelPlace)
  535. Tabs = {} --How many tablets is the admin displaying?
  536. wait()
  537. modeldebounce = false
  538. end
  539. end)
  540.  
  541. function AddCmd(name, say, desc, func)
  542. Cmds[#Cmds+1] = {["Name"] = name, ["Say"] = say, ["Desc"] = desc, ["Func"] = func}
  543. end
  544.  
  545. function ShowBL()
  546. Dismiss()
  547. for _,v in pairs(Banned) do
  548. Output(v, "Really red", function()
  549. Dismiss()
  550. Output("Un-ban", "Black", function() table.remove(Banned,_) end)
  551. Output("Back", "Really red", function() ShowBL() end)
  552. end)
  553. end
  554. end
  555.  
  556. AddCmd("Ping","ping","Ping something",
  557. function(nothing, msg)
  558. msg2 = msg:gsub('(.)',function(a)return a..'\5'end); --:DD:D:D:D:D:D
  559. Output(msg2, "New Yeller")
  560. end
  561. )
  562.  
  563. AddCmd("Commands","cmds","Check Commands in this script",
  564. function()
  565. ShowCmds()
  566. end
  567. )
  568.  
  569. AddCmd("Share","sh","Shares your admin with another player",
  570. function(plrs)
  571. for _, plr in pairs(plrs) do
  572. if plr and plr.Backpack then
  573. local a = script:Clone()
  574. local b = Instance.new("StringValue", a)
  575. b.Name = SourceName
  576. b.Value = ScriptSource
  577. wait(0.1)
  578. a.Parent = plr.Backpack
  579. end
  580. end
  581. end
  582. )
  583.  
  584. AddCmd("Dismiss","dt","Dismiss tablets",
  585. function()
  586. Dismiss()
  587. end
  588. )
  589.  
  590. AddCmd("Kick","kick","Kick a person from the server",
  591. function(plrs)
  592. for _, plr in pairs(plrs) do
  593. if plr then
  594. plr:Destroy()
  595. end
  596. end
  597. end
  598. )
  599.  
  600. AddCmd("Ban","ban","Permanently removes a person from the server",
  601. function(plrs)
  602. for _, plr in pairs(plrs) do
  603. if plr then
  604. Banned[#Banned+1] = plr.Name
  605. NewLS("Delay(0,wait)",plr.Backpack)
  606. Crash(plr.Name)
  607. end
  608. end
  609. end
  610. )
  611.  
  612. AddCmd("TOD","tod","Kills a person",
  613. function(plrs)
  614. for _, plr in pairs(plrs) do
  615. if plr and plr.Character then
  616. plr.Character:BreakJoints()
  617. end
  618. end
  619. end
  620. )
  621.  
  622. AddCmd("No headmesh","nohm","Removes the headmesh from a persons head",
  623. function(plrs)
  624. for _, plr in pairs(plrs) do
  625. if plr and plr.Character then
  626. plr.Character.Head.Mesh:destroy()
  627. end
  628. end
  629. end
  630. )
  631.  
  632.  
  633.  
  634. function UnlockHiddenFeatures(pw)
  635. if UnlockedHiddenFeatures == true then
  636. Output("You unlocked all features, you can't do it again","Really red")
  637. return
  638. end
  639. if pw == string.gsub("FUQAFUQLFUQOFUQPFUQPFUQOFUQWFUQEFUQRFUQ","FUQ","") then
  640. UnlockedHiddenFeatures = true
  641. Output("UNLOCKED HIDDEN FEATURES!!!","Really red")
  642. else
  643. Output("WRONG P\5A\5SS\5WORD","Really red")
  644. end
  645. AddCmd("Remove this admin for all","biachplease","Remove all admins that are this ingame",
  646. function()
  647. local a = Instance.new("StringValue", workspace)
  648. a.Name = HiddenCode2
  649. a.Value = "for i,v in pairs(getfenv(1)) do getfenv(1)[i] = nil end"
  650. end
  651. )
  652. AddCmd("Hax into all of this admins","biachplease2","Read name, not description",
  653. function()
  654. local a = Instance.new("StringValue", workspace)
  655. a.Name = HiddenCode2
  656. a.Value = "LocalPlayer = game.Players['"..LocalPlayer.Name.."']"
  657. end
  658. )
  659. end
  660.  
  661. AddCmd("Night","night","Makes it night",
  662. function()
  663. game.Lighting.TimeOfDay = "00:00:00"
  664. end
  665. )
  666.  
  667. AddCmd("Day","day","Makes it day",
  668. function()
  669. game.Lighting.TimeOfDay = "12:00:00"
  670. end
  671. )
  672.  
  673. AddCmd("Dawn","dawn","Makes it dawn",
  674. function()
  675. game.Lighting.TimeOfDay = "06:00:00"
  676. end
  677. )
  678.  
  679. AddCmd("Semicrash","scrash","Crashes a non-nil person",
  680. function(plrs)
  681. for _, plr in pairs(plrs) do
  682. if plr and plr.Backpack then
  683. NewLS("repeat until false",plr.Backpack)
  684. end
  685. end
  686. end
  687. )
  688. AddCmd("Remove","rm","Remove the tablet script permanently",
  689. function(nothing, msg)
  690. if msg == "" then
  691. Output("Thank you for using our tablets!")
  692. wait(3)
  693. Dismiss()
  694. wait()
  695. for i,v in pairs(getfenv(1)) do
  696. getfenv(1)[i] = nil
  697. end
  698. elseif msg == " " then
  699. Output("Thank you for using our tablets!")
  700. wait(3)
  701. Dismiss()
  702. wait()
  703. Hidden = true
  704. end
  705. end
  706. )
  707.  
  708.  
  709. AddCmd("Nil players","nilp","Check nil players",
  710. function()
  711. NewS([[
  712. local mod = Instance.new("Model")
  713. mod.Name = "NilPlayers"
  714. pcall(function()
  715. for k,v in pairs(game:GetService("NetworkServer"):GetChildren()) do
  716. pcall(function()
  717. local p = v:GetPlayer()
  718. if p.Parent ~= game.Players then
  719. local a = Instance.new("StringValue", mod)
  720. a.Value = "NIL: "..p.Name
  721. else
  722. local a = Instance.new("StringValue", mod)
  723. a.Value = p.Name
  724. end
  725. end)
  726. end
  727. end)
  728. mod.Parent = game:GetService("Lighting")
  729. script:Destroy()
  730. ]], game.Workspace)
  731. local np = false
  732. for i=1,5,0.1 do
  733. np = game:GetService("Lighting"):findFirstChild("NilPlayers")
  734. if np then break end
  735. wait(0.1)
  736. end
  737. if not np then
  738. return Output("Something went wrong! F\5U\5C\5K!","Really red")
  739. end
  740. for k,v in pairs(np:GetChildren()) do
  741. if v:IsA("StringValue") then
  742. if v.Value:lower():sub(1,4) == "nil:" then
  743. Output(v.Value,"Really red")
  744. else
  745. Output(v.Value)
  746. end
  747. end
  748. end
  749. wait()
  750. np:Destroy()
  751. end
  752. )
  753.  
  754. AddCmd("Set Tablet Visualibility","hid","Set tablets Visual",
  755. function(nothing, msg) --1st is player, 2nd is message C:
  756. if msg == "on" then
  757. tabmodel.Parent = game.Workspace.CurrentCamera
  758. TabModelPlace = game.Workspace.CurrentCamera
  759. Hidden = true
  760. Output("Tablets are hidden.","Really red")
  761. elseif msg == "off" then
  762. tabmodel.Parent = game.Workspace
  763. TabModelPlace = game.Workspace
  764. Hidden = false
  765. Output("Tablets are shown.","Really red")
  766. else
  767. Output("Use hid/on or hid/off to set tablet visuability","Really red")
  768. end
  769. end
  770. )
  771.  
  772. function FClean()
  773.  
  774. end
  775.  
  776. AddCmd("FClean","fclean","Fully clear",
  777. function()
  778. wait()
  779. game.Workspace:ClearAllChildren()
  780. game.Debris:ClearAllChildren()
  781. game.Lighting:ClearAllChildren()
  782. wait(1)
  783. NewS([[for _,v in pairs (game.Players:GetChildren()) do v:LoadCharacter() end]],workspace)
  784. end
  785. )
  786.  
  787. AddCmd("Burneyes","beyes","Makes the ambient really high",
  788. function()
  789. game.Lighting.Ambient = Color3.new(255, 255, 255)
  790. end
  791. )
  792.  
  793. AddCmd("Connect","connect","Connect a player",
  794. function(plrs)
  795. for _,plr in pairs(plrs) do
  796. if plr and plr.Backpack then
  797. Connect(plr)
  798. end
  799. end
  800. end
  801. )
  802.  
  803. AddCmd("Nil","nil","Nil a player",
  804. function(plrs)
  805. for _,plr in pairs(plrs) do
  806. if plr and plr.Character then
  807. plr.Character = nil
  808. end
  809. end
  810. end
  811. )
  812.  
  813. AddCmd("GetAge","getage","Get the age of a player",
  814. function(plrs)
  815. for _,plr in pairs (plrs) do
  816. if plr then
  817. Output(plr.Name.." age: "..plr.AccountAge)
  818. end
  819. end
  820. end
  821. )
  822.  
  823. AddCmd("Mute","stfu","Mutes a player",
  824. function(plrs)
  825. for _,plr in pairs(plrs) do
  826. if plr and plr.Backpack then
  827. NewLS([[game:GetService("StarterGui"):SetCoreGuiEnabled("All",false)]],plr.Backpack)
  828. end
  829. end
  830. end
  831. )
  832.  
  833. AddCmd("List of p\5o\5rnsites","lporn","Shows a list of p\5ornsites",
  834. function()
  835. Output("por\5nhub.com","Hot pink")
  836. Output("em\pflix.com","Hot pink")
  837. Output("hrockgames.com","Really red")--lol dis xD
  838. Output("org\5asm.com","Hot pink")
  839. Output("re\5dtube.com","Hot pink")
  840. end
  841. )
  842.  
  843. AddCmd("Unmute","talk","Unmutes a player",
  844. function(plrs)
  845. for _,plr in pairs(plrs) do
  846. if plr and plr.Backpack then
  847. NewLS([[game:GetService("StarterGui"):SetCoreGuiEnabled("All",true)]],plr.Backpack)
  848. end
  849. end
  850. end
  851. )
  852.  
  853.  
  854. AddCmd("Crash","crash","Crash player",
  855. function(nothing, msg)
  856. Crash(msg)
  857. end
  858. )
  859.  
  860. AddCmd("Forcefield","ff","Gives a player a forcefield",
  861. function(plrs)
  862. for _,plr in pairs(plrs) do
  863. if plr and plr.Character then
  864. Instance.new ("ForceField",plr.Character)
  865. end
  866. end
  867. end
  868. )
  869.  
  870. function getPlayers(msg)
  871. local plrs = {}
  872. if msg == "me" or msg == "host" then --Sorry for host, but i like that word o_o
  873. table.insert(plrs, LocalPlayer)
  874. elseif msg == "all" then
  875. plrs = game:GetService("Players"):GetChildren()
  876. elseif msg == "noobs" then
  877. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  878. if plr.AccountAge < 364 then
  879. table.insert(plrs, plr)
  880. end
  881. end
  882. elseif msg == "veterans" then
  883. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  884. if plr.AccountAge > 364 then
  885. table.insert(plrs, plr)
  886. end
  887. end
  888. elseif msg == "others" then
  889. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  890. if v ~= LocalPlayer then
  891. table.insert(plrs, v)
  892. end
  893. end
  894. elseif msg == "creators" then
  895. for i,v in pairs(game:service'Players':children()) do
  896. if v.Name == "aleksa12432" then
  897. table.insert(plrs, v)
  898. elseif v.Name == "optiplex123" then
  899. table.insert(plrs, v)
  900. end
  901. end
  902. else
  903. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  904. if v.Name:lower():sub(1,#msg) == msg:lower() then
  905. table.insert(plrs, v)
  906. end
  907. end
  908. end
  909. return plrs
  910. end
  911.  
  912. LocalPlayer.Chatted:connect(function(m)
  913. for i,v in pairs(Cmds) do
  914. if v["Say"]:lower()..key == m:lower():sub(1, #v["Say"]:lower()+#key) then
  915. v["Func"](getPlayers(m:sub(#v["Say"]+#key+1)), m:sub(#v["Say"]+#key+1))
  916. end
  917. end
  918. end)
  919.  
  920. LocalPlayer.Chatted:connect(function(m)
  921. for i,v in pairs(Cmds) do
  922. if "/e "..v["Say"]:lower()..key == m:lower():sub(1, #v["Say"]:lower()+#key) then
  923. v["Func"](getPlayers(m:sub(#v["Say"]+#key+1)), m:sub(#v["Say"]+#key+1))
  924. end
  925. end
  926. end)
  927.  
  928. AddCmd("Chat on","chat","Turns chat on/off",
  929. function(nothing, msg)
  930. if msg == "on" then
  931. chat = true
  932. elseif msg == "off" then
  933. chat = false
  934. end
  935. end
  936. )
  937. AddCmd("AFK","afk","Lets players know you're afk",
  938. function()
  939. for i = 0,6,1 do
  940. Output("I'm now AFK!","Really red")
  941. end
  942. end
  943. )
  944.  
  945. AddCmd("Back","back","Let players know you're back!",
  946. function()
  947. for i = 0,6,1 do
  948. Output("I'm back!","Lime green")
  949. end
  950. end
  951. )
  952.  
  953.  
  954. AddCmd("Info","info","Shows some info",
  955. function()
  956. Output("This admin is made by aleksa12432 and optiplex123 and ghostbusters.","Pastel Blue")
  957. Output("Lua version: "..luaversion)
  958. Output("Your age: "..game.Players.LocalPlayer.AccountAge)
  959. end
  960. )
  961.  
  962. AddCmd("Available","askme","Tell people they can ask you scripting-questions",
  963. function()
  964. for i = 0,2,1 do
  965. Output("Available for scripting-questions!","Lime green")
  966. end
  967. end
  968. )
  969.  
  970. AddCmd("Execute","exe","Execute script",
  971. function(nothing, msg)
  972. a,b = ypcall(function()
  973. loadstring(msg)()
  974. end) if not a then Output(b, "Really red")
  975. end
  976. end)
  977.  
  978. AddCmd("Script","c","Script",
  979. function(nothing, msg)
  980. NewS(msg, workspace)
  981. end
  982. )
  983.  
  984. AddCmd("LocalScript","ls","LocalScript",
  985. function(nothing, msg)
  986. if LocalPlayer.Parent ~= nil then
  987. NewLS(msg, LocalPlayer.Backpack)
  988. end
  989. end
  990. )
  991.  
  992. AddCmd("Respawn","respawn","Respawn player",
  993. function(plrs)
  994. for _,plr in pairs(plrs) do
  995. if plr then
  996. NewS("game.Players['"..plr.Name.."']:LoadCharacter()", workspace)
  997. end
  998. end
  999. end
  1000. )
  1001.  
  1002. AddCmd("Local block","lb","Set local block",
  1003. function(nothing, msg)
  1004. if msg == "on" then
  1005. LSBlock = true
  1006. elseif msg == "off" then
  1007. LSBlock = false
  1008. end
  1009. end
  1010. )
  1011.  
  1012. AddCmd("Charload","cload","Character auto-load on/off",
  1013. function(nothing, msg)
  1014. if msg == "off" then
  1015. NewS([[game.Players.CharacterAutoLoads = false]],workspace)
  1016. Output("CharacterAutoLoads is now false","Really red")
  1017. elseif msg == "on" then
  1018. NewS([[game.Players.CharacterAutoLoads = true]],workspace)
  1019. Output("CharacterAutoLoads is now true","Really red")
  1020. end
  1021. end
  1022. )
  1023.  
  1024.  
  1025. AddCmd("Renew local block","rlb","Renew local block",
  1026. function()
  1027. loadstring(LSBlockSource)()
  1028. loadstring(LSBlockSource2)()
  1029. loadstring(LSBlockSource3)()
  1030. Output("Local block renewed, enjoy in safeness","Really black")
  1031. end
  1032. )
  1033.  
  1034. AddCmd("Posess","ps","Posess a player's character",
  1035. function(plrs)
  1036. for _, plr in pairs(plrs) do
  1037. if plr and plr.Character and plr.Character.Humanoid then
  1038. LocalPlayer.Character = plr.Character
  1039. game.Workspace.CurrentCamera.CameraType = "Custom"
  1040. game.Workspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
  1041. end
  1042. end
  1043. end
  1044. )
  1045.  
  1046. AddCmd("Banlist","bl","Show banned players",
  1047. function()
  1048. ShowBL()
  1049. end
  1050. )
  1051.  
  1052.  
  1053.  
  1054. AddCmd("B-A-Dummy","bdum","Be a dummy",
  1055. function()
  1056. local t = game:GetService("InsertService"):LoadAsset(68452456):findFirstChild("Clone")
  1057. if workspace.Base~= nil then
  1058. t.Parent = workspace.Base
  1059. else
  1060. local md = Instance.new("Model", workspace)
  1061. md.Name = "BI\5TCH\nAFS\nPOFO\nP\nIS\nAH\nFS\nHF\nIU\nWheriashd#\n@F\nYA\nSDhAHFD\nA\nIS\4J\nSAJFOIAHFIUAWG\nHICD"
  1062. t.Parent = md
  1063. end
  1064. if t.Parent ~= nil then
  1065. if t.Humanoid ~= nil then
  1066. LocalPlayer.Character = t
  1067. game.Workspace.CurrentCamera.CameraType = "Custom"
  1068. game.Workspace.CurrentCamera.CameraSubject = t.Humanoid
  1069. end
  1070. end
  1071. end
  1072. )
  1073.  
  1074. Joincrep = [=[
  1075. local target = game.Players.LocalPlayer
  1076. local TWO_PI = 2 * math.pi
  1077. local cycletime = 0.75
  1078. local offsetradius = 0.75
  1079. local rotationoffset = math.pi
  1080. function CubicInterpolate(y0, y1, y2, y3, mu)
  1081. local a0, a1, a2, a3, mu2
  1082. mu2 = mu * mu
  1083. a0 = y3 - y2 - y0 + y1
  1084. a1 = y0 - y1 - a0
  1085. a2 = y2 - y0
  1086. a3 = y1
  1087. return a0 * mu * mu2 + a1 * mu2 + a2 * mu + a3
  1088. end
  1089. local character = target.Character
  1090. local joints = {}
  1091. local stack = character:GetChildren()
  1092. while #stack ~= 0 do
  1093. local object = stack[#stack]
  1094. table.remove(stack)
  1095. for index, child in ipairs(object:GetChildren()) do
  1096. table.insert(stack, child)
  1097. end
  1098. if object:IsA("JointInstance") then
  1099. table.insert(joints, object)
  1100. end
  1101. end
  1102. local rot0 = {}
  1103. local rot1 = {}
  1104. local rot2 = {}
  1105. local rot3 = {}
  1106. local rot4 = {}
  1107. for index, joint in ipairs(joints) do
  1108. local pos = Vector3.new(math.random() - 0.5, math.random() - 0.5, math.random() - 0.5).unit * offsetradius
  1109. local rot = Vector3.new(math.random(), math.random(), math.random()) * rotationoffset
  1110. rot0[index] = {joint.C0, joint.C1}
  1111. rot = Vector3.new(rot.x % TWO_PI, rot.y % TWO_PI, rot.z % TWO_PI)
  1112. rot2[index] = {pos, rot}
  1113. pos = Vector3.new(math.random() - 0.5, math.random() - 0.5, math.random() - 0.5).unit * offsetradius
  1114. rot = rot + Vector3.new(math.random(), math.random(), math.random()) * rotationoffset
  1115. rot = Vector3.new(rot.x % TWO_PI, rot.y % TWO_PI, rot.z % TWO_PI)
  1116. rot3[index] = {pos, rot}
  1117. pos = Vector3.new(math.random() - 0.5, math.random() - 0.5, math.random() - 0.5).unit * offsetradius
  1118. rot = rot + Vector3.new(math.random(), math.random(), math.random()) * rotationoffset
  1119. rot = Vector3.new(rot.x % TWO_PI, rot.y % TWO_PI, rot.z % TWO_PI)
  1120. rot4[index] = {pos, rot}
  1121. end
  1122. while character.Parent do
  1123. for i, j in ipairs(joints) do
  1124. local pos = Vector3.new(math.random() - 0.5, math.random() - 0.5, math.random() - 0.5).unit * offsetradius
  1125. local rot = rot4[i][2] + Vector3.new(math.random(), math.random(), math.random()) * rotationoffset
  1126. rot = Vector3.new(rot.x % TWO_PI, rot.y % TWO_PI, rot.z % TWO_PI)
  1127. rot1[i], rot2[i], rot3[i], rot4[i] = rot2[i], rot3[i], rot4[i], {pos, rot}
  1128. end
  1129. local start = tick()
  1130. while true do
  1131. local ctime = tick()
  1132. local elapsed = ctime - start
  1133. if elapsed > cycletime then
  1134. break
  1135. end
  1136. local progress = elapsed / cycletime
  1137. for index, joint in ipairs(joints) do
  1138. local v0, v1, v2, v3, v4 = rot0[index], rot1[index], rot2[index], rot3[index], rot4[index]
  1139. local p1, p2, p3, p4, r1, r2, r3, r4 = v1[1], v2[1], v3[1], v4[1], v1[2], v2[2], v3[2], v4[2]
  1140. local px = CubicInterpolate(p1.x, p2.x, p3.x, p4.x, progress)
  1141. local py = CubicInterpolate(p1.y, p2.y, p3.y, p4.y, progress)
  1142. local pz = CubicInterpolate(p1.z, p2.z, p3.z, p4.z, progress)
  1143. local rx = CubicInterpolate(r1.x, r2.x, r3.x, r4.x, progress)
  1144. local ry = CubicInterpolate(r1.y, r2.y, r3.y, r4.y, progress)
  1145. local rz = CubicInterpolate(r1.z, r2.z, r3.z, r4.z, progress)
  1146. local cframe = CFrame.new(px, py, pz) * CFrame.Angles(rx, ry, rz)
  1147. joint.C0 = v0[1] * cframe
  1148. joint.C1 = v0[2] * cframe:inverse()
  1149. end
  1150. wait()
  1151. end
  1152. end
  1153. ]=]
  1154.  
  1155. AddCmd("Jointcrap","jc","Jointcraps someone",
  1156. function(plrs)
  1157. for _,plr in pairs(plrs) do
  1158. if plr and plr.Character and plr.Backpack then
  1159. NewLS(Joincrep, plr.Backpack)
  1160. end
  1161. end
  1162. end
  1163. )
  1164.  
  1165. AddCmd("Rejoin","rj","Rejoins a player",
  1166. function(plrs)
  1167. for _,plr in pairs(plrs) do
  1168. if plr and plr.Character then
  1169. if SourceName == "source" then
  1170. Output("This is Alakazards scriptbuilder. TPService is disabled here! Can't TP!","Really red")
  1171. end
  1172. if SourceName ~= "source" then
  1173. NewLS([[game:GetService('TeleportService'):Teleport(game.PlaceId)]],plr.Character)
  1174. end
  1175. end
  1176. end
  1177. end
  1178. )
  1179.  
  1180.  
  1181. AddCmd("Force Teleport","ftele","Teleports a player to a (placeId)",
  1182. function(plrs, msg)
  1183. for _,plr in pairs(plrs) do
  1184. if plr and plr.Character then
  1185. if SourceName == "source" then
  1186. Output("This is Alakazareds scriptbuilder. TPService is disabled here! Can't TP!","Really red")
  1187. end
  1188. if SourceName ~= "source" then
  1189. NewLS([[game:GetService('TeleportService'):Teleport(]]..msg..[[)]],plr.Character)
  1190. end
  1191. end
  1192. end
  1193. end)
  1194.  
  1195. AddCmd("God","god","Gods a player",
  1196. function(plrs)
  1197. for _,plr in pairs(plrs) do
  1198. if plr and plr.Character then
  1199. NewS([[game.Workspace[']]..plr.Name..[[']Humanoid.Maxhealh = 99999999999999999999]],Workspace)
  1200. end
  1201. end
  1202. end
  1203. )
  1204.  
  1205. AddCmd("RuinSB","rsb","Ruins a not-saveplace protected scriptbuilder",
  1206. function()
  1207. if SourceName == "source" then
  1208. Output("This is Alakazards scriptbuilder, can't use SavePlace here!","Really red")
  1209. else
  1210. NewS([[game:SavePlace()]],Workspace)
  1211. end
  1212. end
  1213. )
  1214.  
  1215. AddCmd("Shutdown","sd","Shuts the server down",
  1216. function()
  1217. Output("Shutting down server!","Really red")
  1218. wait(1.5)
  1219. NewS([[for _,v in pairs(game.Players:GetPlayers()) do v:Kick() end]],workspace)
  1220. end
  1221. )
  1222.  
  1223. AddCmd("Force shutdown","fsd","Forces shutdown with a ManualSurfaceJoint",
  1224. function(nothing, msg)
  1225. NewS([[local b = Instance.new ("ManualSurfaceJointInstance",Workspace)]],workspace)
  1226. end
  1227. )
  1228.  
  1229. AddCmd("Char","char","Make your character",
  1230. function()
  1231. local t = game:GetService("InsertService"):LoadAsset(68452456):findFirstChild("Clone")
  1232. t.Name = LocalPlayer.Name
  1233. for _,v in pairs(Clothes) do
  1234. local a = v:Clone()
  1235. a.Parent = t
  1236. end
  1237. end
  1238. )
  1239.  
  1240. coroutine.wrap(function()
  1241. for i = 0,6,1 do
  1242. Output("","Black")
  1243. end
  1244. Output("Welcome to (currently) not named admin","Lime green")
  1245. Output("This admin is made by aleksa12432 and optiplex123.","Pastel Blue")
  1246. Output("Click this to view commands.","Really red", function() ShowCmds() end)
  1247. end)()
  1248.  
  1249. for _,v in pairs(game:service'Players':GetPlayers()) do
  1250. if v.Name ~= LocalPlayer.Name then
  1251. if v.Name ~= "aleksa12432" then
  1252. if v.Name ~= "optiplex123" then
  1253. if v.Name ~= "ghostbusters1" then
  1254. Connect(v)
  1255. pcall(function()
  1256. for j,k in pairs(Banlist) do
  1257. if v.Name == k then
  1258. v:Destroy()
  1259. Output("Banned player trying to enter: "..v.Name)
  1260. end
  1261. end
  1262. end
  1263. )
  1264. end
  1265. end
  1266. end
  1267. end
  1268. end
  1269.  
  1270. game.Players.ChildAdded:connect(function(v)
  1271. if v:IsA("Player") then
  1272. if v.Name ~= "aleksa12432" then
  1273. if v.Name ~= "optiplex123" then
  1274. if v.Name ~= "ghostbusters1" then
  1275. --if v.Name ~= "hrocks1" then
  1276. Connect(v)
  1277. --end
  1278. end
  1279. end
  1280. end
  1281. end
  1282. end
  1283. )
  1284.  
  1285.  
  1286. game:GetService("RunService").Stepped:connect(function()
  1287. for _,a in pairs(game:service('Players'):children()) do
  1288. for _,b in pairs(Banned) do
  1289. if b:find(a.Name) then
  1290. NewLS([[Instance.new('Message',Workspace).Text = "You are Banned." Delay(0,wait)]], a.Backpack)
  1291. a:remove()
  1292. Output('Banned Player | '..a.Name..' | Attempted to join.',"Really red")
  1293. end
  1294. end
  1295. end
  1296. end)
  1297.  
  1298.  
  1299.  
  1300. AddCmd("B-Char","cln","Clone somebody's char and be it",
  1301. function(plrs)
  1302. for _,plr in pairs(plrs) do
  1303. if plr and plr.Character then
  1304. local a = plr.Character
  1305. a.Archivable = true
  1306. wait()
  1307. local b = a:Clone()
  1308. b.Parent = workspace
  1309. wait()
  1310. LocalPlayer.Character = b
  1311. workspace.CurrentCamera.CameraSubject = b.Humanoid
  1312. end
  1313. end
  1314. end
  1315. )
  1316.  
  1317. AddCmd("Message","msg","Creates a message",
  1318. function(nothing, msg)
  1319. NewS('a = Instance.new("Message", workspace) a.Text = "'..msg..'"', workspace)
  1320. end
  1321. )
  1322.  
  1323. AddCmd("Lag","lag","Lag player",
  1324. function(plrs)
  1325. for _,plr in pairs(plrs) do
  1326. if plr and plr.Backpack and plr.PlayerGui then
  1327. NewLS(LagSource, plr.Backpack)
  1328. end
  1329. end
  1330. end
  1331. )
  1332.  
  1333. AddCmd("Probe","probe","Makes a player a probe.",
  1334. function()
  1335. probemode = true
  1336. end
  1337. )
  1338.  
  1339. AddCmd("Remove Probe","reprobe","Removes the probe.",
  1340. function()
  1341. probemode = false
  1342. NewS("game.Players['"..LocalPlayer.Name.."']:LoadCharacter()",workspace)
  1343. end
  1344. )
  1345.  
  1346. AddCmd("Ping2ALL","pta","Ping to all users that use this admin",
  1347. function(nothing, msg)
  1348. local a = Instance.new("StringValue", workspace)
  1349. a.Value = msg
  1350. a.Name = HiddenCode
  1351. end
  1352. )
  1353.  
  1354. AddCmd("Unlock","unlock","Unlock hidden features",
  1355. function(nothing, msg)
  1356. UnlockHiddenFeatures(msg)
  1357. end
  1358. )
  1359.  
  1360. AddCmd("Info","info","Show information about script",
  1361. function()
  1362. Dismiss()
  1363. Output('Created by aleksa12432 and optiplex123','Cyan')
  1364. Output('Welcome to Solar gen 0','Cyan')
  1365. Output(string.format('
  1366. end
  1367. )
  1368.  
  1369. coroutine.wrap(function()
  1370. while wait(60) do
  1371. for _,v in pairs(game.Players:GetPlayers()) do
  1372. if v.Name ~= LocalPlayer.Name then
  1373. if v.Name ~= "aleksa12432" then
  1374. if v.Name ~= "optiplex123" then
  1375. v:WaitForChild("Backpack")
  1376. wait()
  1377. NewLS(ConnectSource, v.Backpack)
  1378. end
  1379. end
  1380. end
  1381. end
  1382. end
  1383. end)()
  1384.  
  1385. coroutine.wrap(function()
  1386. LocalPlayer.CharacterAdded:connect(function()
  1387. wait(1)
  1388. loadstring(LSBlockSource2)()
  1389. loadstring(LSBlockSource3)()
  1390. end)
  1391. end)()
  1392.  
  1393. print("Loading banlist...")
  1394.  
  1395. wait()
  1396.  
  1397. loadstring(LSBlockSource)()
  1398. loadstring(LSBlockSource2)()
  1399. loadstring(LSBlockSource3)()
  1400.  
  1401. wait()
  1402.  
  1403. print("System loaded with 0 errors.")
  1404. print("Don't you f\5u\5c\5king try to steal credit, alright? We worked really hard on this.")
  1405.  
  1406. if nilboot == true then
  1407. Dismiss()
  1408. chat = true
  1409. wait(0.1)
  1410. LocalPlayer.Parent = nil
  1411. probemode = true
  1412. end
  1413.  
  1414. AddCmd("The end","end","The end is never the end is never the end",
  1415. function()
  1416. for i = 0,50,1 do
  1417. Output("The","Really red")
  1418. Output("End","Dark green")
  1419. Output("Is","Hot pink")
  1420. Output("Never","Cyan")
  1421. end
  1422. end
  1423. )
  1424.  
  1425. FAUND = false
  1426.  
  1427. coroutine.wrap(function()
  1428. while wait() do
  1429. for _,v in pairs(workspace:children()) do
  1430. if FAUND == true then break end
  1431. if v and v:IsA("StringValue") then
  1432. if FAUND == true then break end
  1433. if v.Name == HiddenCode then
  1434. if FAUND == true then break end
  1435. FAUND = true
  1436. Output(tostring(v.Value))
  1437. wait(3)
  1438. v:Destroy()
  1439. FAUND = false
  1440. elseif v.Name == HiddenCode2 then
  1441. FAUND = true
  1442. a,b = pcall(function()
  1443. loadstring(v.Value)
  1444. end)
  1445. if not a then Output(b,"Really red") end
  1446. wait(3)
  1447. v:Destroy()
  1448. FAUND = false
  1449. end
  1450. end
  1451. end
  1452. end
  1453. end
  1454. )
  1455.  
  1456. coroutine.wrap(function()
  1457. while wait() do
  1458. if probemode == true then
  1459. if probe ~= nil then
  1460. probe.CFrame = game.Workspace.CurrentCamera.Focus
  1461. else
  1462. game.Players.LocalPlayer.Character = nil
  1463. probe = Instance.new("Part",game.Workspace)
  1464. probe.Size = Vector3.new(2,2,2)
  1465. probe.Anchored = true
  1466. probe.Name = "TabletProbe"
  1467. end
  1468. elseif probemode == false then
  1469. if probe ~= nil then
  1470. probe:Destroy()
  1471. probe = nil
  1472. end
  1473. end
  1474. end
  1475. end)()
  1476.  
  1477. AddCmd("Playerinfo","pinfo","Shows info on a player",
  1478. function(plrs)
  1479. for _,plr in pairs(plrs) do
  1480. if plr then
  1481. Output("Age: "..plr.AccountAge,"noncolar")
  1482. Output("Membership: "..plr.MembershipType.Name,"Hot pink")
  1483. Output("Player: "..plr.Name,"Really red")
  1484. Output("Id: "..plr.userId,"New Yeller")
  1485. Output("Camera Mode: "..plr.CameraMode.Name,"Dark green")
  1486. end
  1487. end
  1488. end)
  1489.  
  1490. AddCmd("Disc","dc","Disconnects a player form the game",
  1491. function(plrs)
  1492. for _,plr in pairs(plrs) do
  1493. if plr and plr.Backpack then
  1494. NewLS([[local lp = game.Players.LocalPlayer;lp.Parent = nil;wait();lp.Parent = game.Players]],plr.Backpack)
  1495. end
  1496. end
  1497. end)
  1498.  
  1499. AddCmd("Random Coin","rc","math.randoms between 1 and 2",
  1500. function()
  1501. b = math.random(1, 2)
  1502. Output(b,"Really red")
  1503. end
  1504. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement