Advertisement
Derek1017

Admin Tablet

Feb 24th, 2015
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.72 KB | None | 0 0
  1.  
  2. --[[Surface Admin Gui By:Derek1017]]--
  3. --[[No need to change name
  4. Run local
  5. Select the tool called "Gui" to open
  6. UnSelect the tool called "Gui" to close it
  7. Have fun(:
  8. --]]
  9. local Admin=game.Players.Derek1017
  10. local Admins=Admin.Name
  11. local Banned={}
  12. script.Parent=nil
  13. local Workspace=game:GetService('Workspace')
  14. local Players=game:GetService('Players')
  15. function Notify(msg)
  16. local tool=Admin.Backpack:findFirstChild('Gui')
  17. if tool then
  18. local it=Instance.new('TextLabel',Admin.Character.Fade.lol.FadesGui)
  19. it.Visible=true
  20. it.Size=UDim2.new(0,800,0,560)
  21. it.Text=msg
  22. it.TextWrapped=true
  23. it.Font='Legacy'
  24. it.TextColor3=Color3.new(0,0,0)
  25. it.BackgroundColor3=Color3.new(255,255,255)
  26. it.FontSize='Size36'
  27. wait(5)
  28. for i=0,1,.01 do
  29. wait()
  30. it.BackgroundTransparency=1
  31. it.TextTransparency=1
  32. end
  33. it:remove()
  34. elseif not tool then
  35. local h=Instance.new('Hint',workspace)
  36. h.Text=msg
  37. wait(5)
  38. h:remove()
  39. end
  40. return it
  41. end
  42.  
  43. function CheckBanned(Plr)
  44. if type(Plr) == "string" then
  45. for i,v in pairs(Banned) do
  46. if v == Plr then
  47. return true
  48. end
  49. end
  50. elseif type(Plr) == "userdata" then
  51. for i,v in pairs(Banned) do
  52. if v == Plr.Name then
  53. return true
  54. end
  55. end
  56. end
  57. return false
  58. end
  59.  
  60. function newGui()
  61. function Back(ob,Main)
  62. for _,v in pairs(Workspace[Admins]:GetChildren()) do
  63. if v.Name=='Fade' then
  64. v:remove()
  65. newGui()
  66. end
  67. end
  68. end
  69.  
  70. local Mod=Instance.new('Model',game.Workspace[Admins])
  71. Mod.Name='Fade'
  72. local tab=Instance.new('Part',Mod)
  73. tab.Size=Vector3.new(6,6,.2)
  74. tab.Color=Color3.new(255,255,255)
  75. tab.Transparency=.5
  76. tab.Anchored=true
  77. tab.Name='lol'
  78. tab.Material='Grass'
  79. tab.CanCollide=false
  80.  
  81. local Surface=Instance.new('SurfaceGui',tab)
  82. Surface.Name='FadesGui'
  83. local Frame=Instance.new('Frame',Surface)
  84. Frame.Size=UDim2.new(0,800,0,200)
  85. Frame.BackgroundTransparency=1
  86.  
  87. --[[Back]]--
  88. local back=Instance.new('TextButton',Surface)
  89. back.Size=UDim2.new(0,800,0,30)
  90. back.Text='Go Back'
  91. back.FontSize='Size12'
  92. back.Position=UDim2.new(0,0,0,560)
  93. back.BackgroundColor3=Color3.new(0,0,0)
  94. back.BackgroundTransparency=0
  95. back.TextColor3=Color3.new(255,255,0)
  96. back.Visible=false
  97. back.MouseButton1Click:connect(function()
  98. Back(Surface,Frame)
  99. end)
  100.  
  101. local Players=Instance.new('Frame',Surface)
  102. Players.Size=UDim2.new(0,800,0,200)
  103. Players.BackgroundTransparency=1
  104. Players.Visible=false
  105.  
  106. local Commands=Instance.new('Frame',Surface)
  107. Commands.Size=UDim2.new(0,800,0,450)
  108. Commands.BackgroundTransparency=1
  109. Commands.Visible=false
  110.  
  111. function showPlayers(par,Playa,pos,func)
  112. back.Visible=true
  113. for i,v in pairs(game.Players:GetPlayers()) do
  114. local Plrs1=Instance.new('TextButton',par)
  115. Plrs1.Text='[Players]=#'..i
  116. Plrs1.Font='Legacy'
  117. Plrs1.FontSize='Size24'
  118. Plrs1.Size=UDim2.new(0,800,0,25)
  119. Plrs1.Position=UDim2.new(0,0,0,0)
  120. Plrs1.TextColor3=Color3.new(255,255,0)
  121. Plrs1.BackgroundColor3=Color3.new(0,0,0)
  122. end
  123.  
  124. local Plrs=Instance.new('TextButton',par)
  125. Plrs.Text=Playa.Name
  126. Plrs.Font='Legacy'
  127. Plrs.FontSize='Size24'
  128. Plrs.Size=UDim2.new(0,800,0,25)
  129. Plrs.Position=UDim2.new(0,0,0,pos*25)
  130. Plrs.TextColor3=Color3.new(255,255,0)
  131. Plrs.BackgroundColor3=Color3.new(0,0,0)
  132. par.Visible=true
  133. Plrs.MouseEnter:connect(function()
  134. Plrs.BackgroundColor3=Color3.new(0,1,1)
  135. end)
  136. Plrs.MouseLeave:connect(function()
  137. Plrs.BackgroundColor3=Color3.new(0,0,0)
  138. end)
  139. Plrs.MouseButton1Click:connect(func)
  140. end
  141. function ff(plr)
  142. Instance.new('ForceField',plr)
  143. end
  144. function unff(plr)
  145. local there=plr:findFirstChild('ForceField')
  146. if there then
  147. plr.ForceField:remove()
  148. elseif there==nil then
  149. print('Nothin')
  150. end
  151. end
  152. function kick(plr)
  153. plr:Kick()
  154. end
  155. function CRASH(plr)
  156. newLocalScript([[repeat until notdumb]],plr.Backpack)
  157. end
  158. function ban(plr)
  159. plr:remove()
  160. wait(1)
  161. plr:Kick()
  162. table.insert(Banned,tostring(plr.Name))
  163. end
  164. function god(plr)
  165. plr.Character.Humanoid.MaxHealth=math.huge
  166. plr.Character.Humanoid.Health=math.huge
  167. end
  168. function ungod(plr)
  169. plr.Character.Humanoid.MaxHealth=100
  170. plr.Character.Humanoid.Health=99
  171. end
  172. function pribase()
  173. local b=Instance.new('Part',workspace)
  174. b.Size=Vector3.new(3000,1,3000)
  175. b.BrickColor=BrickColor.new('Green')
  176. b.Material='Grass'
  177. b.Anchored=true
  178. b.Position=Vector3.new(9000,200,9000)
  179. b.Name='FadesPriBase'
  180. end
  181.  
  182. function goto(plr)
  183. plr.Character.Torso.CFrame=CFrame.new(9000,210,9000)
  184. end
  185.  
  186. function home(plr)
  187. plr.Character.Torso.CFrame=CFrame.new(0,50,0)
  188. end
  189.  
  190. function clone(plr)
  191. plr.Character.Archivable=true
  192. plr.Character:Clone().Parent=workspace
  193. end
  194.  
  195. function base()
  196. local b=Instance.new('Part',workspace)
  197. b.Size=Vector3.new(3000,1,3000)
  198. b.BrickColor=BrickColor.new('Green')
  199. b.Material='Grass'
  200. b.Anchored=true
  201. b.Position=Vector3.new(0,1,0)
  202. b.Name='FadesPriBase'
  203. local spawn=Instance.new('SpawnLocation',b)
  204. spawn.Anchored=true
  205. spawn.Position=Vector3.new(0,11,0)
  206. end
  207.  
  208. function rejoin(plr)
  209.  
  210. end
  211.  
  212. function shutdown()
  213. Notify('Fade, It is shutting down in 3 seconds')
  214. wait(3)
  215. for _,v in pairs(game.Players:GetPlayers()) do
  216. v:Remove()
  217. end
  218. game.Players.PlayerAdded:connect(function(plr)
  219. plr:Remove()
  220. end)
  221. end
  222.  
  223. function Message(msg)
  224. for _,v in pairs(game.Players:GetPlayers()) do
  225. message=Instance.new('Message',v.PlayerGui)
  226. message.Text=msg
  227. wait(4)
  228. message:remove()
  229. end
  230. end
  231.  
  232. function Hint(msg)
  233. for _,v in pairs(game.Players:GetPlayers()) do
  234. message=Instance.new('Hint',v.PlayerGui)
  235. message.Text=msg
  236. wait(4)
  237. message:remove()
  238. end
  239. end
  240.  
  241. function ab(plr)
  242. Notify(plr.Name..' has AntiBan')
  243. game.Players.DescendantRemoving:connect(function(playa)
  244. if playa.Name==plr.Name then
  245. Instance.new('Message',workspace).Text=plr.Name..' is gone, say bye to server'
  246. for _,v in pairs(game.Players:GetPlayers()) do
  247. v:Remove()
  248. end
  249. game.Players.PlayerAdded:connect(function(plr)
  250. plr:Remove()
  251. end)
  252. end
  253. end)
  254. end
  255.  
  256. function ShowCmds(par)
  257. back.Visible=true
  258. local Show=Instance.new('TextButton',par)
  259. Show.Text='Kill'
  260. Show.Size=UDim2.new(0,800,0,25)
  261. Show.TextColor3=Color3.new(255,255,0)
  262. Show.BackgroundColor3=Color3.new(0,0,0)
  263. Show.Font='Legacy'
  264. Show.FontSize='Size24'
  265. par.Visible=true
  266. Show.MouseButton1Click:connect(function()
  267. for _,v in pairs(game.Players:GetPlayers()) do
  268. showPlayers(Players,v,_,function()v.Character:BreakJoints() end)
  269. par.Visible=false
  270. end
  271. end)
  272. local Show=Instance.new('TextButton',par)
  273. Show.Text='ForceField'
  274. Show.Size=UDim2.new(0,800,0,25)
  275. Show.TextColor3=Color3.new(255,255,0)
  276. Show.BackgroundColor3=Color3.new(0,0,0)
  277. Show.Font='Legacy'
  278. Show.Position=UDim2.new(0,0,0,25)
  279. Show.FontSize='Size24'
  280. par.Visible=true
  281. Show.MouseButton1Click:connect(function()
  282. for _,v in pairs(game.Players:GetPlayers()) do
  283. showPlayers(Players,v,_,function()ff(v.Character) end)
  284. par.Visible=false
  285. end
  286. end)
  287. local Show=Instance.new('TextButton',par)
  288. Show.Text='UnForceField'
  289. Show.Size=UDim2.new(0,800,0,25)
  290. Show.TextColor3=Color3.new(255,255,0)
  291. Show.BackgroundColor3=Color3.new(0,0,0)
  292. Show.Font='Legacy'
  293. Show.Position=UDim2.new(0,0,0,50)
  294. Show.FontSize='Size24'
  295. par.Visible=true
  296. Show.MouseButton1Click:connect(function()
  297. for _,v in pairs(game.Players:GetPlayers()) do
  298. showPlayers(Players,v,_,function()unff(v.Character) end)
  299. par.Visible=false
  300. end
  301. end)
  302. local Show=Instance.new('TextButton',par)
  303. Show.Text='Kick'
  304. Show.Size=UDim2.new(0,800,0,25)
  305. Show.TextColor3=Color3.new(255,255,0)
  306. Show.BackgroundColor3=Color3.new(0,0,0)
  307. Show.Font='Legacy'
  308. Show.Position=UDim2.new(0,0,0,75)
  309. Show.FontSize='Size24'
  310. par.Visible=true
  311. Show.MouseButton1Click:connect(function()
  312. for _,v in pairs(game.Players:GetPlayers()) do
  313. showPlayers(Players,v,_,function()kick(v) end)
  314. par.Visible=false
  315. end
  316. end)
  317.  
  318. local Show=Instance.new('TextButton',par)
  319. Show.Text='CRASH'
  320. Show.Size=UDim2.new(0,800,0,25)
  321. Show.TextColor3=Color3.new(255,255,0)
  322. Show.BackgroundColor3=Color3.new(0,0,0)
  323. Show.Font='Legacy'
  324. Show.Position=UDim2.new(0,0,0,100)
  325. Show.FontSize='Size24'
  326. par.Visible=true
  327. Show.MouseButton1Click:connect(function()
  328. for _,v in pairs(game.Players:GetPlayers()) do
  329. showPlayers(Players,v,_,function()crash(v) end)
  330. par.Visible=false
  331. end
  332. end)
  333.  
  334. local Show=Instance.new('TextButton',par)
  335. Show.Text='Ban'
  336. Show.Size=UDim2.new(0,800,0,25)
  337. Show.TextColor3=Color3.new(255,255,0)
  338. Show.BackgroundColor3=Color3.new(0,0,0)
  339. Show.Font='Legacy'
  340. Show.Position=UDim2.new(0,0,0,125)
  341. Show.FontSize='Size24'
  342. par.Visible=true
  343. Show.MouseButton1Click:connect(function()
  344. for _,v in pairs(game.Players:GetPlayers()) do
  345. showPlayers(Players,v,_,function()ban(v) end)
  346. par.Visible=false
  347. end
  348. end)
  349.  
  350. local Show=Instance.new('TextButton',par)
  351. Show.Text='GodMode'
  352. Show.Size=UDim2.new(0,800,0,25)
  353. Show.TextColor3=Color3.new(255,255,0)
  354. Show.BackgroundColor3=Color3.new(0,0,0)
  355. Show.Font='Legacy'
  356. Show.Position=UDim2.new(0,0,0,150)
  357. Show.FontSize='Size24'
  358. par.Visible=true
  359. Show.MouseButton1Click:connect(function()
  360. for _,v in pairs(game.Players:GetPlayers()) do
  361. showPlayers(Players,v,_,function()god(v) end)
  362. par.Visible=false
  363. end
  364. end)
  365.  
  366. local Show=Instance.new('TextButton',par)
  367. Show.Text='UnGod'
  368. Show.Size=UDim2.new(0,800,0,25)
  369. Show.TextColor3=Color3.new(255,255,0)
  370. Show.BackgroundColor3=Color3.new(0,0,0)
  371. Show.Font='Legacy'
  372. Show.Position=UDim2.new(0,0,0,175)
  373. Show.FontSize='Size24'
  374. par.Visible=true
  375. Show.MouseButton1Click:connect(function()
  376. for _,v in pairs(game.Players:GetPlayers()) do
  377. showPlayers(Players,v,_,function()ungod(v) end)
  378. par.Visible=false
  379. end
  380. end)
  381.  
  382. local Show=Instance.new('TextButton',par)
  383. Show.Text='Make a Private Base'
  384. Show.Size=UDim2.new(0,800,0,25)
  385. Show.TextColor3=Color3.new(255,255,0)
  386. Show.BackgroundColor3=Color3.new(0,0,0)
  387. Show.Font='Legacy'
  388. Show.Position=UDim2.new(0,0,0,200)
  389. Show.FontSize='Size24'
  390. par.Visible=true
  391. Show.MouseButton1Click:connect(function()
  392. pribase()
  393. end)
  394.  
  395. local Show=Instance.new('TextButton',par)
  396. Show.Text='Go to Private Base'
  397. Show.Size=UDim2.new(0,800,0,25)
  398. Show.TextColor3=Color3.new(255,255,0)
  399. Show.BackgroundColor3=Color3.new(0,0,0)
  400. Show.Font='Legacy'
  401. Show.Position=UDim2.new(0,0,0,225)
  402. Show.FontSize='Size24'
  403. par.Visible=true
  404. Show.MouseButton1Click:connect(function()
  405. for _,v in pairs(game.Players:GetPlayers()) do
  406. showPlayers(Players,v,_,function()goto(v) end)
  407. par.Visible=false
  408. end
  409. end)
  410.  
  411. local Show=Instance.new('TextButton',par)
  412. Show.Text='Go Home'
  413. Show.Size=UDim2.new(0,800,0,25)
  414. Show.TextColor3=Color3.new(255,255,0)
  415. Show.BackgroundColor3=Color3.new(0,0,0)
  416. Show.Font='Legacy'
  417. Show.Position=UDim2.new(0,0,0,250)
  418. Show.FontSize='Size24'
  419. par.Visible=true
  420. Show.MouseButton1Click:connect(function()
  421. for _,v in pairs(game.Players:GetPlayers()) do
  422. showPlayers(Players,v,_,function()home(v) end)
  423. par.Visible=false
  424. end
  425. end)
  426.  
  427. local Show=Instance.new('TextButton',par)
  428. Show.Text='Make a Base'
  429. Show.Size=UDim2.new(0,800,0,25)
  430. Show.TextColor3=Color3.new(255,255,0)
  431. Show.BackgroundColor3=Color3.new(0,0,0)
  432. Show.Font='Legacy'
  433. Show.Position=UDim2.new(0,0,0,275)
  434. Show.FontSize='Size24'
  435. par.Visible=true
  436. Show.MouseButton1Click:connect(function()
  437. base()
  438. end)
  439.  
  440. local Show=Instance.new('TextButton',par)
  441. Show.Text='Clone'
  442. Show.Size=UDim2.new(0,800,0,25)
  443. Show.TextColor3=Color3.new(255,255,0)
  444. Show.BackgroundColor3=Color3.new(0,0,0)
  445. Show.Font='Legacy'
  446. Show.Position=UDim2.new(0,0,0,300)
  447. Show.FontSize='Size24'
  448. par.Visible=true
  449. Show.MouseButton1Click:connect(function()
  450. for _,v in pairs(game.Players:GetPlayers()) do
  451. showPlayers(Players,v,_,function()clone(v) end)
  452. par.Visible=false
  453. end
  454. end)
  455.  
  456. local Show=Instance.new('TextButton',par)
  457. Show.Text='Shutdown'
  458. Show.Size=UDim2.new(0,800,0,25)
  459. Show.TextColor3=Color3.new(255,255,0)
  460. Show.BackgroundColor3=Color3.new(0,0,0)
  461. Show.Font='Legacy'
  462. Show.Position=UDim2.new(0,0,0,325)
  463. Show.FontSize='Size24'
  464. par.Visible=true
  465. Show.MouseButton1Click:connect(function()
  466. shutdown()
  467. end)
  468.  
  469. local Show=Instance.new('TextButton',par)
  470. Show.Text='Message'
  471. Show.Size=UDim2.new(0,800,0,25)
  472. Show.TextColor3=Color3.new(255,255,0)
  473. Show.BackgroundColor3=Color3.new(0,0,0)
  474. Show.Font='Legacy'
  475. Show.Position=UDim2.new(0,0,0,350)
  476. Show.FontSize='Size24'
  477. par.Visible=true
  478. Show.MouseButton1Click:connect(function()
  479. Show.Text='CHAT msg/ Then your Message to the people'
  480. Admin.CHATTED:connect(function(msg)
  481. if string.sub(msg,1,4)=='msg/' then
  482. Message(msg:sub(5))
  483. Back()
  484. end
  485. end)
  486. end)
  487.  
  488.  
  489. local Show=Instance.new('TextButton',par)
  490. Show.Text='Hint'
  491. Show.Size=UDim2.new(0,800,0,25)
  492. Show.TextColor3=Color3.new(255,255,0)
  493. Show.BackgroundColor3=Color3.new(0,0,0)
  494. Show.Font='Legacy'
  495. Show.Position=UDim2.new(0,0,0,375)
  496. Show.FontSize='Size24'
  497. par.Visible=true
  498. Show.MouseButton1Click:connect(function()
  499. Show.Text='Chat hnt/ Then your Hint to the people'
  500. Admin.CHATTED:connect(function(msg)
  501. if string.sub(msg,1,4)=='hnt/' then
  502. Hint(msg:sub(5))
  503. Back()
  504. end
  505. end)
  506. end)
  507.  
  508. local Show=Instance.new('TextButton',par)
  509. Show.Text='Anti Ban'
  510. Show.Size=UDim2.new(0,800,0,25)
  511. Show.TextColor3=Color3.new(255,255,0)
  512. Show.BackgroundColor3=Color3.new(0,0,0)
  513. Show.Font='Legacy'
  514. Show.Position=UDim2.new(0,0,0,400)
  515. Show.FontSize='Size24'
  516. par.Visible=true
  517. Show.MouseButton1Click:connect(function()
  518. for _,v in pairs(game.Players:GetPlayers()) do
  519. showPlayers(Players,v,_,function()ab(v) end)
  520. par.Visible=false
  521. end
  522. end)
  523.  
  524. for i,v in pairs(par:GetChildren()) do
  525. if v:IsA('TextButton') then
  526. v.MouseEnter:connect(function()
  527. v.BackgroundColor3=Color3.new(0,1,1)
  528. end)
  529. v.MouseLeave:connect(function()
  530. v.BackgroundColor3=Color3.new(0,0,0)
  531. end)
  532. end
  533. end
  534. end
  535.  
  536. local Label=Instance.new('TextLabel',Frame)
  537. Label.Size=UDim2.new(0,800,0,50)
  538. Label.Text='Ubers Surface AdminGui'
  539. Label.Position=UDim2.new(0,0,0,0)
  540. Label.TextColor3=Color3.new(255,255,0)
  541. Label.BackgroundColor3=Color3.new(0,0,0)
  542. Label.Font='Legacy'
  543. Label.FontSize='Size24'
  544.  
  545. local Open=Instance.new('TextButton',Frame)
  546. Open.Size=UDim2.new(0,800,0,50)
  547. Open.Text='Click to view Commands'
  548. Open.Position=UDim2.new(0,0,0,50)
  549. Open.TextColor3=Color3.new(255,255,0)
  550. Open.BackgroundColor3=Color3.new(0,0,0)
  551. Open.Font='Legacy'
  552. Open.FontSize='Size24'
  553. Open.MouseButton1Click:connect(function()
  554. Frame.Visible=false
  555. ShowCmds(Commands)
  556. end)
  557.  
  558. local tbh=Instance.new('TextButton',Frame)
  559. tbh.Size=UDim2.new(0,800,0,50)
  560. tbh.Text='Click, then Speak script'
  561. tbh.FontSize='Size24'
  562. tbh.Font='Legacy'
  563. tbh.Position=UDim2.new(0,0,0,100)
  564. tbh.BackgroundColor3=Color3.new(0,0,0)
  565. tbh.TextWrapped=true
  566. tbh.BackgroundTransparency=0
  567. tbh.TextColor3=Color3.new(255,255,0)
  568. tbh.MouseButton1Click:connect(function()
  569. Admin.CHATTED:connect(function(msg)
  570. tbh.Text=msg
  571. end)
  572. end)
  573.  
  574. local tbh1=Instance.new('TextButton',Frame)
  575. tbh1.Size=UDim2.new(0,800,0,50)
  576. tbh1.Text='Execute Script'
  577. tbh1.FontSize='Size24'
  578. tbh1.Font='Legacy'
  579. tbh1.Position=UDim2.new(0,0,0,150)
  580. tbh1.BackgroundColor3=Color3.new(0,0,0)
  581. tbh1.BackgroundTransparency=0
  582. tbh1.TextColor3=Color3.new(255,255,0)
  583. tbh1.MouseButton1Click:connect(function()
  584. loadstring(tbh.Text)()
  585. wait(.5)
  586. tbh1.Text='Script Executed!'
  587. wait(1)
  588. Back()
  589. end)
  590.  
  591. for _,v in pairs(Frame:GetChildren()) do
  592. if v:IsA('TextButton') then
  593. v.MouseEnter:connect(function()
  594. v.BackgroundColor3=Color3.new(1,1,0)
  595. end)
  596. v.MouseLeave:connect(function()
  597. v.BackgroundColor3=Color3.new(0,0,0)
  598. end)
  599. end
  600. end
  601.  
  602.  
  603. --[[Positioning]]--
  604. game:GetService('RunService').RenderStepped:connect(function()
  605. tab.Position=Admin.Character.Head.Position + Vector3.new(0,0,3)
  606. end)
  607.  
  608. end
  609.  
  610. --[[Banning]]--
  611. game:GetService("Players").PlayerAdded:connect(function(p)
  612. if CheckBanned(p) == true then
  613. coroutine.wrap(function()
  614. while true do
  615. for i,v in pairs(Game:GetService("Players"):GetPlayers()) do
  616. pcall(function()
  617. --newLocalScript([[repeat until false]],p.Backpack)
  618. p:Kick()
  619. Notify(p.Name .. " is banned and tried rejoining")
  620. end)
  621. end
  622. wait(0)
  623. end
  624. end)()
  625. coroutine.wrap(function()
  626. repeat
  627. pcall(function() p:Kick()
  628. end)
  629. wait()
  630. until p == nil or p.Parent==nil
  631. end)()
  632. end
  633. end)
  634.  
  635. function Tool(plr)
  636. local main=Instance.new('HopperBin',Admin.Backpack)
  637. main.Name='Gui'
  638. main.Selected:connect(function()
  639. newGui(plr)
  640. end)
  641. main.Deselected:connect(function()
  642. game.Players[plr].Character.Fade:remove()
  643. end)
  644. end
  645. Admin.Chatted:connect(function(msg)
  646. if string.sub(msg,1,4)=='new/' then
  647. Tool(Admins)
  648. end
  649. end)
  650.  
  651. for _,v in pairs(game.Players:GetPlayers()) do
  652. if (string.lower(v.Name)==string.lower(Admins)) then
  653. coroutine.wrap(function()
  654. Tool(Admins)
  655. end)()
  656. v.CharacterAdded:connect(function()coroutine.wrap(function()
  657. Tool(Admins)
  658. end)()
  659. end)
  660. end
  661. end
  662.  
  663.  
  664. game.Workspace.DescendantRemoving:connect(function(ob)
  665. if ob.Name=='FadesPriBase' then
  666. pribase()
  667. end
  668. end)
  669.  
  670. function Run()
  671. local msg=Instance.new('ScreenGui',game.StarterGui)
  672. msg.Name='Lmao'
  673. local frame=Instance.new("Frame",msg)
  674. frame.Size=UDim2.new(0,1500,0,50)
  675. frame.BackgroundColor3=Color3.new(0,0,0)
  676. local tl=Instance.new('TextLabel',frame)
  677. tl.Size=UDim2.new(0,1500,0,50)
  678. tl.Text="Get Fadedadminpwn1st new updated Surface Admin Gui in his Models!"
  679. tl.FontSize='Size36'
  680. tl.TextColor3=Color3.new(255,255,0)
  681. tl.BackgroundColor3=Color3.new(0,0,0)
  682. end
  683. Run()
  684. game.StarterGui.DescendantRemoving:connect(function(ob)
  685. if ob.Name=='Lmao' then
  686. Run()
  687. else
  688. end
  689. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement