SebTDZ

a

Jul 24th, 2019
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. print("Seb's Require Script Gui V2 Loaded")
  2.  
  3. function rgb(RED,GREEN,BLUE)
  4.     local Count = 1 / 255
  5.     --Red Count
  6.     local red = Count * RED
  7.     --Green Count
  8.     local green = Count * GREEN
  9.     --Blue Count
  10.     local blue = Count * BLUE
  11.     --Give Color3
  12.     local FColor = Color3.new(red,green,blue)
  13.     return FColor
  14. end
  15.  
  16. function gui(plr)
  17. local TweenService = game:GetService("TweenService")
  18. local ScreenGui = Instance.new("ScreenGui",plr.PlayerGui)
  19. ScreenGui.Name = "Script Run Gui"
  20. plr.PlayerGui.ChildRemoved:Connect(function(go)
  21.     if go.Name == ScreenGui.Name then
  22.         gui(plr)
  23.     end
  24. end)
  25.  
  26. local ScriptsFrame = Instance.new("Frame",ScreenGui)
  27. ScriptsFrame.BackgroundColor3 = rgb(15, 111, 200)
  28. ScriptsFrame.BorderColor3 = rgb(10, 220, 230)
  29. ScriptsFrame.Name = "ScriptsFrame"
  30. ScriptsFrame.Position = UDim2.new(1.4,0,-1.4,0)
  31. ScriptsFrame.Size = UDim2.new(0.4,0,0.4,0)
  32. local open = TweenService:Create(ScriptsFrame, TweenInfo.new(0.5,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0), {Position = UDim2.new(0.3,0,0.3,0)})
  33. local close = TweenService:Create(ScriptsFrame, TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0), {Position = UDim2.new(1.4,0,-1.4,0)})
  34.  
  35. local OpenGuiButton = Instance.new("TextButton",ScreenGui)
  36. OpenGuiButton.BackgroundColor3 = rgb(15, 60, 200)
  37. OpenGuiButton.BorderColor3 = rgb(10, 220, 230)
  38. OpenGuiButton.Name = "OpenGuiButton"
  39. OpenGuiButton.Position = UDim2.new(1,-150,1,-90)
  40. OpenGuiButton.Size = UDim2.new(0,150,0,45)
  41. OpenGuiButton.Font = "SourceSansBold"
  42. OpenGuiButton.FontSize = "Size32"
  43. OpenGuiButton.Text = "Scripts"
  44. OpenGuiButton.TextColor3 = rgb(10, 220, 230)
  45. local openBool = false
  46. OpenGuiButton.MouseButton1Down:connect(function()
  47.     if openBool == false then
  48.         open:Play()
  49.         openBool = true
  50.     else
  51.         close:Play()
  52.         openBool = false
  53.     end
  54. end)
  55.  
  56. local Title = Instance.new("TextLabel",ScriptsFrame)
  57. Title.BackgroundColor3 = rgb(15, 111, 200)
  58. Title.BorderColor3 = rgb(10, 220, 230)
  59. Title.Name = "Title"
  60. Title.Position = UDim2.new(0.5,0,0.075,0)
  61. Title.Size = UDim2.new(0,1,0,0.05)
  62. Title.Font = "SourceSansBold"
  63. Title.FontSize = "Size32"
  64. Title.Text = "Seb's Require Script Gui V2"
  65. Title.TextColor3 = rgb(10, 220, 230)
  66.  
  67. --Other
  68.  
  69. --local ResetButton = Instance.new("TextButton",ScriptsFrame)
  70. --ResetButton.BackgroundColor3 = rgb(15, 60, 200)
  71. --ResetButton.BorderColor3 = rgb(10, 220, 230)
  72. --ResetButton.Name = "ResetButton"
  73. --ResetButton.Position = UDim2.new(0,0,0.0,0)
  74. --ResetButton.Size = UDim2.new(0.20,0,0.15,0)
  75. --ResetButton.Font = "SourceSansBold"
  76. --ResetButton.FontSize = "Size32"
  77. --ResetButton.Text = "Reset"
  78. --ResetButton.TextColor3 = rgb(10, 220, 230)
  79. --ResetButton.MouseButton1Down:connect(function()
  80. --  plr.Character = nil
  81. --  wait(1)
  82. --  plr:LoadCharacter()
  83. --end)
  84.  
  85. --Scripts
  86.  
  87. local Script1 = Instance.new("TextButton",ScriptsFrame)
  88. Script1.BackgroundColor3 = rgb(15, 60, 200)
  89. Script1.BorderColor3 = rgb(10, 220, 230)
  90. Script1.Name = "Script1"
  91. Script1.Position = UDim2.new(0.01,0,0.16,0)
  92. Script1.Size = UDim2.new(0.20,0,0.15,0)
  93. Script1.Font = "SourceSansBold"
  94. Script1.FontSize = "Size32"
  95. Script1.Text = "Vereus"
  96. Script1.TextColor3 = rgb(10, 220, 230)
  97. Script1.MouseButton1Down:connect(function()
  98.     require(3306802406).Player(plr.Name)
  99. end)
  100.  
  101. local Script2 = Instance.new("TextButton",ScriptsFrame)
  102. Script2.BackgroundColor3 = rgb(15, 60, 200)
  103. Script2.BorderColor3 = rgb(10, 220, 230)
  104. Script2.Name = "Script2"
  105. Script2.Position = UDim2.new(0.25,0,0.16,0)
  106. Script2.Size = UDim2.new(0.20,0,0.15,0)
  107. Script2.Font = "SourceSansBold"
  108. Script2.FontSize = "Size32"
  109. Script2.Text = "SpellCaster"
  110. Script2.TextColor3 = rgb(10, 220, 230)
  111. Script2.MouseButton1Down:connect(function()
  112.     require(2630670143).load(plr.Name)
  113. end)
  114.  
  115. local Script3 = Instance.new("TextButton",ScriptsFrame)
  116. Script3.BackgroundColor3 = rgb(15, 60, 200)
  117. Script3.BorderColor3 = rgb(10, 220, 230)
  118. Script3.Name = "Script3"
  119. Script3.Position = UDim2.new(0.55,0,0.16,0)
  120. Script3.Size = UDim2.new(0.20,0,0.15,0)
  121. Script3.Font = "SourceSansBold"
  122. Script3.FontSize = "Size18"
  123. Script3.Text = "Universal Glitcher"
  124. Script3.TextColor3 = rgb(10, 220, 230)
  125. Script3.MouseButton1Down:connect(function()
  126.     require(2632963364).ug(plr.Name)
  127. end)
  128.  
  129. local Script4 = Instance.new("TextButton",ScriptsFrame)
  130. Script4.BackgroundColor3 = rgb(15, 60, 200)
  131. Script4.BorderColor3 = rgb(10, 220, 230)
  132. Script4.Name = "Script4"
  133. Script4.Position = UDim2.new(0.79,0,0.16,0)
  134. Script4.Size = UDim2.new(0.20,0,0.15,0)
  135. Script4.Font = "SourceSansBold"
  136. Script4.FontSize = "Size32"
  137. Script4.Text = "Egg Dog"
  138. Script4.TextColor3 = rgb(10, 220, 230)
  139. Script4.MouseButton1Down:connect(function()
  140.     require(3308106266).eggdog(plr.Name)
  141. end)
  142.  
  143. local Script5 = Instance.new("TextButton",ScriptsFrame)
  144. Script5.BackgroundColor3 = rgb(15, 60, 200)
  145. Script5.BorderColor3 = rgb(10, 220, 230)
  146. Script5.Name = "Script5"
  147. Script5.Position = UDim2.new(0.01,0,0.36,0)
  148. Script5.Size = UDim2.new(0.20,0,0.15,0)
  149. Script5.Font = "SourceSansBold"
  150. Script5.FontSize = "Size28"
  151. Script5.Text = "Fallen Anger"
  152. Script5.TextColor3 = rgb(10, 220, 230)
  153. Script5.MouseButton1Down:connect(function()
  154.     require(2560679631).ang(plr.Name)
  155. end)
  156.  
  157. local Script6 = Instance.new("TextButton",ScriptsFrame)
  158. Script6.BackgroundColor3 = rgb(15, 60, 200)
  159. Script6.BorderColor3 = rgb(10, 220, 230)
  160. Script6.Name = "Script6"
  161. Script6.Position = UDim2.new(0.25,0,0.36,0)
  162. Script6.Size = UDim2.new(0.20,0,0.15,0)
  163. Script6.Font = "SourceSansBold"
  164. Script6.FontSize = "Size32"
  165. Script6.Text = "Switcher V2"
  166. Script6.TextColor3 = rgb(10, 220, 230)
  167. Script6.MouseButton1Down:connect(function()
  168.     require(2605260171).load(plr.Name)
  169. end)
  170.  
  171. local Script7 = Instance.new("TextButton",ScriptsFrame)
  172. Script7.BackgroundColor3 = rgb(15, 60, 200)
  173. Script7.BorderColor3 = rgb(10, 220, 230)
  174. Script7.Name = "Script7"
  175. Script7.Position = UDim2.new(0.55,0,0.36,0)
  176. Script7.Size = UDim2.new(0.20,0,0.15,0)
  177. Script7.Font = "SourceSansBold"
  178. Script7.FontSize = "Size32"
  179. Script7.Text = "MrByeBye"
  180. Script7.TextColor3 = rgb(10, 220, 230)
  181. Script7.MouseButton1Down:connect(function()
  182.     require(2595582545).mbye(plr.Name)
  183. end)
  184.  
  185. local Script8 = Instance.new("TextButton",ScriptsFrame)
  186. Script8.BackgroundColor3 = rgb(15, 60, 200)
  187. Script8.BorderColor3 = rgb(10, 220, 230)
  188. Script8.Name = "Script4"
  189. Script8.Position = UDim2.new(0.79,0,0.36,0)
  190. Script8.Size = UDim2.new(0.20,0,0.15,0)
  191. Script8.Font = "SourceSansBold"
  192. Script8.FontSize = "Size18"
  193. Script8.Text = "Server Admin"
  194. Script8.TextColor3 = rgb(10, 220, 230)
  195. Script8.MouseButton1Down:connect(function()
  196.     require(3004985656).server(plr.Name)
  197. end)
  198.  
  199. local Script9 = Instance.new("TextButton",ScriptsFrame)
  200. Script9.BackgroundColor3 = rgb(15, 60, 200)
  201. Script9.BorderColor3 = rgb(10, 220, 230)
  202. Script9.Name = "Script9"
  203. Script9.Position = UDim2.new(0.01,0,0.56,0)
  204. Script9.Size = UDim2.new(0.20,0,0.15,0)
  205. Script9.Font = "SourceSansBold"
  206. Script9.FontSize = "Size32"
  207. Script9.Text = "Xester"
  208. Script9.TextColor3 = rgb(10, 220, 230)
  209. Script9.MouseButton1Down:connect(function()
  210.     require(2918747265).load(plr.Name)
  211. end)
  212.  
  213. local Script10 = Instance.new("TextButton",ScriptsFrame)
  214. Script10.BackgroundColor3 = rgb(15, 60, 200)
  215. Script10.BorderColor3 = rgb(10, 220, 230)
  216. Script10.Name = "Script10"
  217. Script10.Position = UDim2.new(0.25,0,0.56,0)
  218. Script10.Size = UDim2.new(0.20,0,0.15,0)
  219. Script10.Font = "SourceSansBold"
  220. Script10.FontSize = "Size18"
  221. Script10.Text = "Spectrum Glitcher"
  222. Script10.TextColor3 = rgb(10, 220, 230)
  223. Script10.MouseButton1Down:connect(function()
  224.     require(2930987220).load(plr.Name)
  225. end)
  226.  
  227. local Script11 = Instance.new("TextButton",ScriptsFrame)
  228. Script11.BackgroundColor3 = rgb(15, 60, 200)
  229. Script11.BorderColor3 = rgb(10, 220, 230)
  230. Script11.Name = "Script11"
  231. Script11.Position = UDim2.new(0.55,0,0.56,0)
  232. Script11.Size = UDim2.new(0.20,0,0.15,0)
  233. Script11.Font = "SourceSansBold"
  234. Script11.FontSize = "Size32"
  235. Script11.Text = "Shrike"
  236. Script11.TextColor3 = rgb(10, 220, 230)
  237. Script11.MouseButton1Down:connect(function()
  238.     require(2101877169).shr(plr.Name)
  239. end)
  240.  
  241. local Script12 = Instance.new("TextButton",ScriptsFrame)
  242. Script12.BackgroundColor3 = rgb(15, 60, 200)
  243. Script12.BorderColor3 = rgb(10, 220, 230)
  244. Script12.Name = "Script12"
  245. Script12.Position = UDim2.new(0.79,0,0.56,0)
  246. Script12.Size = UDim2.new(0.20,0,0.15,0)
  247. Script12.Font = "SourceSansBold"
  248. Script12.FontSize = "Size18"
  249. Script12.Text = "Ethereal Glitcher"
  250. Script12.TextColor3 = rgb(10, 220, 230)
  251. Script12.MouseButton1Down:connect(function()
  252.     require(2991936409).load(plr.Name)
  253. end)
  254.  
  255. local Script13 = Instance.new("TextButton",ScriptsFrame)
  256. Script13.BackgroundColor3 = rgb(15, 60, 200)
  257. Script13.BorderColor3 = rgb(10, 220, 230)
  258. Script13.Name = "Script13"
  259. Script13.Position = UDim2.new(0.01,0,0.76,0)
  260. Script13.Size = UDim2.new(0.20,0,0.15,0)
  261. Script13.Font = "SourceSansBold"
  262. Script13.FontSize = "Size28"
  263. Script13.Text = "RuinLX"
  264. Script13.TextColor3 = rgb(10, 220, 230)
  265. Script13.MouseButton1Down:connect(function()
  266.     require(2574148466).lx(plr.Name)
  267. end)
  268.  
  269. end
  270.  
  271. local main = game.Players["ImportedKayleigh"]
  272. gui(main)
  273. main.CharacterAdded:Connect(function(Character)
  274.     for i,gUi in pairs(main.PlayerGui:GetChildren()) do
  275.         if gUi.Name == ScreenGui.Name then
  276.             local a = 1
  277.         elseif gUi.Name == "Command_Bar" then
  278.             local a = 1
  279.         else
  280.             gUi:Remove()
  281.         end
  282.     end
  283. end)
Advertisement
Add Comment
Please, Sign In to add comment