Advertisement
creepstu

Weird Executor UI

Apr 24th, 2023
638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.91 KB | None | 0 0
  1. local Executor = Instance.new("ScreenGui")
  2. local Panel = Instance.new("Frame")
  3. local Execute = Instance.new("TextButton")
  4. local Clear = Instance.new("TextButton")
  5. local ResetChar = Instance.new("TextButton")
  6. local KickMe = Instance.new("TextButton")
  7. local Form = Instance.new("Frame")
  8. local Source = Instance.new("TextBox")
  9. local ToggleMN = Instance.new("ImageButton")
  10. local CloseGUI = Instance.new("ImageButton")
  11.  
  12. Executor.Name = "Executor"
  13. Executor.Parent = game.CoreGui
  14. Executor.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Panel.Name = "Panel"
  17. Panel.Parent = Executor
  18. Panel.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  19. Panel.BackgroundTransparency = 0.300
  20. Panel.BorderColor3 = Color3.fromRGB(30, 30, 30)
  21. Panel.Position = UDim2.new(0.246690735, 0, 0.674603224, 0)
  22. Panel.Size = UDim2.new(0.506634474, 0, 0.0476190485, 0)
  23.  
  24. Execute.Name = "Execute"
  25. Execute.Parent = Panel
  26. Execute.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  27. Execute.BorderColor3 = Color3.fromRGB(30, 30, 30)
  28. Execute.BorderSizePixel = 0
  29. Execute.Position = UDim2.new(0.0357142873, 0, 0, 0)
  30. Execute.Size = UDim2.new(0.214285731, 0, 1, 0)
  31. Execute.Font = Enum.Font.SourceSans
  32. Execute.Text = "Execute"
  33. Execute.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. Execute.TextSize = 18.000
  35. Execute.TextWrapped = true
  36.  
  37. Clear.Name = "Clear"
  38. Clear.Parent = Panel
  39. Clear.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  40. Clear.BorderColor3 = Color3.fromRGB(30, 30, 30)
  41. Clear.BorderSizePixel = 0
  42. Clear.Position = UDim2.new(0.261999995, 0, 0, 0)
  43. Clear.Size = UDim2.new(0.214285731, 0, 1, 0)
  44. Clear.Font = Enum.Font.SourceSans
  45. Clear.Text = "Clear"
  46. Clear.TextColor3 = Color3.fromRGB(255, 255, 255)
  47. Clear.TextSize = 18.000
  48. Clear.TextWrapped = true
  49.  
  50. ResetChar.Name = "ResetChar"
  51. ResetChar.Parent = Panel
  52. ResetChar.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  53. ResetChar.BorderColor3 = Color3.fromRGB(30, 30, 30)
  54. ResetChar.BorderSizePixel = 0
  55. ResetChar.Position = UDim2.new(0.522000015, 0, 0, 0)
  56. ResetChar.Size = UDim2.new(0.214285731, 0, 1, 0)
  57. ResetChar.Font = Enum.Font.SourceSans
  58. ResetChar.Text = "Reset Char"
  59. ResetChar.TextColor3 = Color3.fromRGB(255, 255, 255)
  60. ResetChar.TextSize = 18.000
  61. ResetChar.TextWrapped = true
  62.  
  63. KickMe.Name = "KickMe"
  64. KickMe.Parent = Panel
  65. KickMe.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  66. KickMe.BorderColor3 = Color3.fromRGB(30, 30, 30)
  67. KickMe.BorderSizePixel = 0
  68. KickMe.Position = UDim2.new(0.748000026, 0, 0, 0)
  69. KickMe.Size = UDim2.new(0.214285731, 0, 1, 0)
  70. KickMe.Font = Enum.Font.SourceSans
  71. KickMe.Text = "Kick Me"
  72. KickMe.TextColor3 = Color3.fromRGB(255, 255, 255)
  73. KickMe.TextSize = 18.000
  74. KickMe.TextWrapped = true
  75.  
  76. Form.Name = "Form"
  77. Form.Parent = Executor
  78. Form.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  79. Form.BackgroundTransparency = 0.300
  80. Form.BorderColor3 = Color3.fromRGB(30, 30, 30)
  81. Form.Position = UDim2.new(0.246999979, 0, 0.276904792, 0)
  82. Form.Size = UDim2.new(0.506634474, 0, 0.388888896, 0)
  83.  
  84. Source.Name = "Source"
  85. Source.Parent = Form
  86. Source.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  87. Source.BackgroundTransparency = 0.700
  88. Source.BorderColor3 = Color3.fromRGB(30, 30, 30)
  89. Source.Position = UDim2.new(0.0357142128, 0, 0, 0)
  90. Source.Size = UDim2.new(0.964285791, 0, 1, 0)
  91. Source.ClearTextOnFocus = false
  92. Source.Font = Enum.Font.SourceSans
  93. Source.MultiLine = true
  94. Source.Text = "--// Start!"
  95. Source.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. Source.TextSize = 15.000
  97. Source.TextWrapped = true
  98. Source.TextXAlignment = Enum.TextXAlignment.Left
  99. Source.TextYAlignment = Enum.TextYAlignment.Top
  100.  
  101. ToggleMN.Name = "ToggleMN"
  102. ToggleMN.Parent = Executor
  103. ToggleMN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  104. ToggleMN.BorderSizePixel = 0
  105. ToggleMN.Position = UDim2.new(0, 0, 0.607936502, 0)
  106. ToggleMN.Size = UDim2.new(0.0301568154, 0, 0.039682541, 0)
  107. ToggleMN.Image = "rbxassetid://7666265581"
  108.  
  109. CloseGUI.Name = "CloseGUI"
  110. CloseGUI.Parent = Executor
  111. CloseGUI.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  112. CloseGUI.BackgroundTransparency = 1.000
  113. CloseGUI.BorderSizePixel = 0
  114. CloseGUI.Position = UDim2.new(0, 0, 0.584126949, 0)
  115. CloseGUI.Size = UDim2.new(0.0180940907, 0, 0.0238095261, 0)
  116. CloseGUI.Image = "rbxassetid://5198838744"
  117.  
  118. local function QMLQQJU()
  119.     local script = Instance.new('LocalScript', Execute)
  120.  
  121.     script.Parent.MouseButton1Click:Connect(function()
  122.         loadstring(script.Parent.Parent.Parent.Form.Source.Text)()
  123.     end)
  124. end
  125. coroutine.wrap(QMLQQJU)()
  126. local function STGZ()
  127.     local script = Instance.new('LocalScript', Clear)
  128.  
  129.     script.Parent.MouseButton1Click:Connect(function()
  130.         script.Parent.Parent.Parent.Form.Source.Text = ""
  131.     end)
  132. end
  133. coroutine.wrap(STGZ)()
  134. local function AOVMIGD()
  135.     local script = Instance.new('LocalScript', ResetChar)
  136.  
  137.     script.Parent.MouseButton1Click:Connect(function()
  138.         game.Players.LocalPlayer.Character.Humanoid.Health = 0
  139.     end)
  140. end
  141. coroutine.wrap(AOVMIGD)()
  142. local function VCEUH()
  143.     local script = Instance.new('LocalScript', KickMe)
  144.  
  145.     script.Parent.MouseButton1Click:Connect(function()
  146.         game.Players.LocalPlayer:Kick("You were kicked from this experience: (Error Code: 273)")
  147.     end)
  148. end
  149. coroutine.wrap(VCEUH)()
  150. local function CJHV()
  151.     local script = Instance.new('LocalScript', Source)
  152.  
  153.     script.Parent.Font = Enum.Font.Code
  154. end
  155. coroutine.wrap(CJHV)()
  156. local function YAFMGJ()
  157.     local script = Instance.new('LocalScript', ToggleMN)
  158.  
  159.     local evabled = true
  160.     script.Parent.MouseButton1Down:Connect(function()
  161.         if evabled == true then
  162.             evabled = false
  163.             script.Parent.Rotation = 180
  164.             script.Parent.Parent.Panel.Visible = false
  165.             script.Parent.Parent.Form.Visible = false
  166.         else
  167.             evabled = true
  168.             script.Parent.Rotation = 0
  169.             script.Parent.Parent.Panel.Visible = true
  170.             script.Parent.Parent.Form.Visible = true
  171.         end
  172.     end)
  173. end
  174. coroutine.wrap(YAFMGJ)()
  175. local function DRCVTS()
  176.     local script = Instance.new('LocalScript', CloseGUI)
  177.  
  178.     script.Parent.MouseButton1Down:Connect(function()
  179.         script.Parent.Parent:Destroy()
  180.     end)
  181. end
  182. coroutine.wrap(DRCVTS)()
  183.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement