Lollddsf

Untitled

Jan 26th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. --SocietyDeadX Admin--
  2. B1=Instance.new("ScreenGui")
  3. B2=Instance.new("Frame")
  4. B3=Instance.new("TextBox")
  5. B4=Instance.new("TextButton")
  6. B5=Instance.new("Frame")
  7. B6=Instance.new("Frame")
  8. B7=Instance.new("TextButton")
  9. B1.Parent=game:GetService("CoreGui")
  10. B2.Parent=B1;
  11. B2.BackgroundColor3=Color3.fromRGB(20,20,20)
  12. B2.BackgroundTransparency=0;
  13. B2.Position=UDim2.new(0,0,0,0)
  14. B2.Size=UDim2.new(1,0,1,0)
  15. B2.Active=true;
  16. B2.Draggable=false;
  17. B3.Name="Input"
  18. B3.Parent=B2;
  19. B3.BorderSizePixel=5
  20. B3.BackgroundColor3=Color3.fromRGB(0.105882,0.164706,0.207843)
  21. B3.BackgroundTransparency=0;
  22. B3.Size=UDim2.new(1,0,.05,0)
  23. B3.Position=UDim2.new(0,0,0.5,0)
  24. B3.Font=Enum.Font.SourceSansLight;
  25. B3.FontSize=Enum.FontSize.Size14;
  26. B3.TextColor3=Color3.new(0.945098,0.945098,0.945098)
  27. B3.TextScaled=true;
  28. B3.TextSize=14;
  29. B3.TextWrapped=true;
  30. B3.Text="Enter key here. Press Enter To Confirm"
  31. B4.Name="Title"
  32. B4.Parent=B2;
  33. B4.BorderSizePixel=5
  34. B4.BackgroundColor3=Color3.new(0.105882,0.164706,0.207843)
  35. B4.BackgroundTransparency=0;
  36. B4.Size=UDim2.new(.2,0,.2,0)
  37. B4.Position=UDim2.new(.401,0,0.2,0)
  38. B4.Font=Enum.Font.SourceSansLight;
  39. B4.FontSize=Enum.FontSize.Size14;
  40. B4.TextColor3=Color3.new(0.945098,0.945098,0.945098)
  41. B4.TextScaled=true;
  42. B4.TextSize=14;
  43. B4.TextWrapped=true;
  44. B4.Text="Kevin Administrator Console"
  45. B5.Parent=B1;
  46. B5.BackgroundColor3=Color3.fromRGB(50,50,50)
  47. B5.BackgroundTransparency=0;
  48. B5.Position=UDim2.new(0,0,0.19,0)
  49. B5.Size=UDim2.new(1,0,.02,0)
  50. B5.Active=true;
  51. B5.Draggable=false;
  52. B6.Parent=B1;
  53. B6.BackgroundColor3=Color3.fromRGB(50,50,50)
  54. B6.BackgroundTransparency=0;
  55. B6.Position=UDim2.new(0,0,0.4,0)
  56. B6.Size=UDim2.new(1,0,.02,0)
  57. B6.Active=true;
  58. B6.Draggable=false;
  59. B7.Name="Title"
  60. B7.Parent=B2;
  61. B7.BorderSizePixel=5
  62. B7.BackgroundColor3=Color3.new(0.105882,0.164706,0.207843)
  63. B7.BackgroundTransparency=0;
  64. B7.Size=UDim2.new(.2,0,.2,0)
  65. B7.Position=UDim2.new(.401,0,0.6,0)
  66. B7.Font=Enum.Font.SourceSansLight;
  67. B7.FontSize=Enum.FontSize.Size14;
  68. B7.TextColor3=Color3.new(0.945098,0.945098,0.945098)
  69. B7.TextScaled=true;
  70. B7.TextSize=14;
  71. B7.TextWrapped=true;
  72. B7.Text="Have fun using!"
  73. B3.FocusLost:connect(function(p)
  74. if p then
  75. if game.Players.LocalPlayer.Name == "orgaans" and B3.Text == "Daddy" then
  76. B1:Destroy()
  77. elseif game.Players.LocalPlayer.Name == "RIP_Demonic" and B3.Text == "permission:EFUJIWFEUFHUQU" then
  78. B1:Destroy()
  79. elseif game.Players.LocalPlayer.Name == "o_DomToxic" and B3.Text == "f831ndnjo_DomToxic" then
  80. B1:Destroy()
  81. elseif game.Players.LocalPlayer.Name == "bz1a" and B3.Text == "Daddy" then
  82. B1:Destroy()
  83. elseif game.Players.LocalPlayer.Name == "zIK3vin" and B3.Text == "Unknown1920" then
  84. B1:Destroy()
  85. elseif game.Players.LocalPlayer.Name == "zKlexin" and B3.Text == "Unknown1920" then
  86. B1:Destroy()
  87. end
  88. end
  89. end)
  90. wait(2)
  91. prefix = "-"
  92. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("[SocietyDeadX] loaded v3.", "All")
  93. wait(.5)
  94. a=2187476
  95. lplayer = game.Players.LocalPlayer
  96.  
  97. game:GetService("Players").LocalPlayer.Chatted:Connect(function(msg)
  98. function GetPlayer(String)
  99. local Found = {}
  100. local strl = String:lower()
  101. if strl == "all" then
  102. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  103. if v.Name ~= lplayer.Name then
  104. table.insert(Found,v)
  105. end
  106. end
  107. elseif strl == "me" then
  108. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  109. if v.Name == lplayer.Name then
  110. table.insert(Found,v)
  111. end
  112. end
  113. else
  114. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  115. if v.Name:lower():sub(1, #String) == String:lower() then
  116. table.insert(Found,v)
  117. end
  118. end
  119. end
  120. return Found
  121. end
  122.  
  123.  
  124.  
  125.  
  126. end)
Add Comment
Please, Sign In to add comment