Advertisement
PasteBinAutoUpdate

Script Exe

Apr 4th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. --Made By DeLux Mods (SCript Executor) Enjouy
  2. local DeLux = Instance.new("ScreenGui")
  3. local Draggger = Instance.new("Frame")
  4. local MainFrame = Instance.new("Frame")
  5. local Secondary = Instance.new("Frame")
  6. local Clear = Instance.new("TextButton")
  7. local Exe = Instance.new("TextButton")
  8. local TextBox = Instance.new("TextBox")
  9. local TextLabel = Instance.new("TextLabel")
  10. --Properties:
  11. DeLux.Name = "DeLux"
  12. DeLux.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Draggger.Name = "Draggger"
  15. Draggger.Parent = DeLux
  16. Draggger.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  17. Draggger.BorderSizePixel = 0
  18. Draggger.Position = UDim2.new(0.14453584, 0, 0.208728656, 0)
  19. Draggger.Size = UDim2.new(0, 489, 0, 25)
  20. Draggger.Active = true
  21. Draggger.Draggable = true
  22.  
  23. MainFrame.Name = "MainFrame"
  24. MainFrame.Parent = Draggger
  25. MainFrame.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  26. MainFrame.BorderSizePixel = 0
  27. MainFrame.Position = UDim2.new(-0.0009750647, 0, 0.968728662, 0)
  28. MainFrame.Size = UDim2.new(0, 489, 0, 217)
  29.  
  30. Secondary.Name = "Secondary"
  31. Secondary.Parent = MainFrame
  32. Secondary.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  33. Secondary.BorderSizePixel = 0
  34. Secondary.Position = UDim2.new(0.0009750647, 0, 0.719880879, 0)
  35. Secondary.Size = UDim2.new(0, 488, 0, 60)
  36.  
  37. Clear.Name = "Clear"
  38. Clear.Parent = Secondary
  39. Clear.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  40. Clear.BorderColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  41. Clear.BorderSizePixel = 2
  42. Clear.Position = UDim2.new(0.0301402602, 0, 0.0722580701, 0)
  43. Clear.Size = UDim2.new(0, 200, 0, 50)
  44. Clear.Font = Enum.Font.Fantasy
  45. Clear.Text = "Clear"
  46. Clear.TextColor3 = Color3.new(1, 0, 0.0156863)
  47. Clear.TextSize = 25
  48.  
  49. Exe.Name = "Exe"
  50. Exe.Parent = Secondary
  51. Exe.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  52. Exe.BorderColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  53. Exe.BorderSizePixel = 2
  54. Exe.Position = UDim2.new(0.538336992, 0, 0.0722580701, 0)
  55. Exe.Size = UDim2.new(0, 200, 0, 50)
  56. Exe.Font = Enum.Font.Fantasy
  57. Exe.Text = "Execute"
  58. Exe.TextColor3 = Color3.new(1, 0, 0.0156863)
  59. Exe.TextSize = 25
  60.  
  61. TextBox.Parent = MainFrame
  62. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  63. TextBox.BackgroundTransparency = 9
  64. TextBox.BorderSizePixel = 0
  65. TextBox.Position = UDim2.new(0, 0, 0.00460827351, 0)
  66. TextBox.Size = UDim2.new(0, 489, 0, 155)
  67. TextBox.ZIndex = 99999
  68. TextBox.Font = Enum.Font.Fantasy
  69. TextBox.LineHeight = 3
  70. TextBox.MultiLine = true
  71. TextBox.PlaceholderColor3 = Color3.new(0.698039, 0, 0.00784314)
  72. TextBox.PlaceholderText = "DeLux Executor :OP:"
  73. TextBox.Text = ""
  74. TextBox.TextColor3 = Color3.new(0.211765, 0.490196, 0)
  75. TextBox.TextSize = 20
  76. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  77. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  78.  
  79. TextLabel.Parent = Draggger
  80. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  81. TextLabel.BackgroundTransparency = 8394803
  82. TextLabel.BorderSizePixel = 0
  83. TextLabel.Size = UDim2.new(0, 176, 0, 24)
  84. TextLabel.Font = Enum.Font.Fantasy
  85. TextLabel.Text = "DeLux GUI Executor"
  86. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  87. TextLabel.TextSize = 20
  88. -- Scripts:
  89. Exe.MouseButton1Down:connect(function()
  90. loadstring(TextBox.Text)
  91. end)
  92.  
  93. Clear.MouseButton1Down:connect(function()
  94. TextBox.Text = ("")
  95. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement