Advertisement
agariogamer2345

SUCC GUI

Aug 3rd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. -- Objects
  2.  
  3. local GUIexecutor = Instance.new("ScreenGui")
  4. local Themain = Instance.new("Frame")
  5. local Titleofexe = Instance.new("TextLabel")
  6. local Executebutton = Instance.new("TextButton")
  7. local Credits3 = Instance.new("TextLabel")
  8. local Closebutton = Instance.new("TextButton")
  9. local scripthere = Instance.new("TextBox")
  10.  
  11. -- Properties
  12.  
  13. GUIexecutor.Name = "GUI executor"
  14. GUIexecutor.Parent = game.CoreGui
  15.  
  16. Themain.Name = "The main"
  17. Themain.Parent = GUIexecutor
  18. Themain.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  19. Themain.BorderColor3 = Color3.new(0, 0, 0)
  20. Themain.BorderSizePixel = 3
  21. Themain.Position = UDim2.new(0.423228443, 0, 0.348968148, 0)
  22. Themain.Size = UDim2.new(0, 386, 0, 328)
  23. Themain.Selectable = true
  24. Themain.Draggable = true
  25. Themain.Active = true
  26.  
  27. Titleofexe.Name = "Title of exe"
  28. Titleofexe.Parent = Themain
  29. Titleofexe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  30. Titleofexe.BorderColor3 = Color3.new(0, 0, 0)
  31. Titleofexe.BorderSizePixel = 3
  32. Titleofexe.Position = UDim2.new(-0.00259067351, 0, 0, 0)
  33. Titleofexe.Size = UDim2.new(0, 386, 0, 37)
  34. Titleofexe.Font = Enum.Font.SourceSans
  35. Titleofexe.Text = "SUCC Executor ( ͡° ͜ʖ ͡°)"
  36. Titleofexe.TextColor3 = Color3.new(1, 1, 1)
  37. Titleofexe.TextSize = 30
  38.  
  39. Executebutton.Name = "Executebutton"
  40. Executebutton.Parent = Themain
  41. Executebutton.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  42. Executebutton.BorderSizePixel = 0
  43. Executebutton.Position = UDim2.new(0.295336783, 0, 0.871951222, 0)
  44. Executebutton.Size = UDim2.new(0, 153, 0, 35)
  45. Executebutton.Font = Enum.Font.SourceSans
  46. Executebutton.Text = "Execute"
  47. Executebutton.TextColor3 = Color3.new(1, 1, 1)
  48. Executebutton.TextSize = 24
  49. Executebutton.Parent.Executebutton.MouseButton1Click:connect(function()
  50. code = script.Parent.scripthere.Text
  51. loadstring(code)()
  52. end)
  53.  
  54. Credits3.Name = "Credits :3"
  55. Credits3.Parent = Themain
  56. Credits3.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  57. Credits3.BorderColor3 = Color3.new(0, 0, 0)
  58. Credits3.BorderSizePixel = 3
  59. Credits3.Position = UDim2.new(-0.00259067351, 0, 0.112804875, 0)
  60. Credits3.Size = UDim2.new(0, 387, 0, 18)
  61. Credits3.Font = Enum.Font.SourceSans
  62. Credits3.Text = "Designed and made by Instinct#2728 Coded By hmh#4831 "
  63. Credits3.TextColor3 = Color3.new(1, 1, 1)
  64. Credits3.TextSize = 14
  65.  
  66. Closebutton.Name = "Close button"
  67. Closebutton.Parent = Themain
  68. Closebutton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  69. Closebutton.BorderColor3 = Color3.new(0, 0, 0)
  70. Closebutton.BorderSizePixel = 3
  71. Closebutton.Position = UDim2.new(0.940414488, 0, 0, 0)
  72. Closebutton.Size = UDim2.new(0, 23, 0, 25)
  73. Closebutton.Font = Enum.Font.SourceSans
  74. Closebutton.Text = "X"
  75. Closebutton.TextColor3 = Color3.new(1, 0, 0)
  76. Closebutton.TextSize = 30
  77. Closebutton.Parent.Closebutton.MouseButton1Click:connect(function()
  78. game.CoreGui.GUIexecutor:Destroy()
  79. end)
  80.  
  81. scripthere.Name = "scripthere"
  82. scripthere.Parent = Themain
  83. scripthere.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
  84. scripthere.Position = UDim2.new(0.025906736, 0, 0.207317069, 0)
  85. scripthere.Size = UDim2.new(0, 367, 0, 209)
  86. scripthere.Font = Enum.Font.SourceSans
  87. scripthere.Text = "Execute Ur Dang Scripts Here (not long scripts)"
  88. scripthere.TextColor3 = Color3.new(0, 0, 0)
  89. scripthere.TextSize = 14
  90. scripthere.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement