SebTDZ

Seb's Require Script Gui V2

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