Advertisement
DrawingJhon

Untitled

Jul 30th, 2020 (edited)
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. local screen = Instance.new("ScreenGui", owner.PlayerGui)
  2. screen.Name = "ScriptExecuter"
  3. local frame = Instance.new("Frame", screen)
  4. frame.Name = "Main"
  5. frame.Size = UDim2.new(0, 350, 0, 200)
  6. frame.Position = UDim2.new(0, 0, 0.4, 0)
  7. frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  8. local db = Instance.new("TextButton", frame)
  9. db.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  10. db.Position = UDim2.new(1, 0, 0, 0)
  11. db.Size = UDim2.new(0, 20, 1, 0)
  12. local tb = Instance.new("TextBox", frame)
  13. tb.AnchorPoint = Vector2.new(0.5, 0)
  14. tb.Position = UDim2.new(0.5, 0, 0.1, 0)
  15. tb.Size = UDim2.new(0, 300, 0, 75)
  16. tb.Font = "Code"
  17. tb.ClearTextOnFocus = false
  18. tb.BorderSizePixel = 3
  19. tb.BorderColor3 = Color3.fromRGB(100, 100, 100)
  20. tb.TextScaled = true
  21. local execButton = Instance.new("TextButton", frame)
  22. execButton.Name = "ExecutionButton"
  23. execButton.Position = UDim2.new(0.1, 0, 0.6, 0)
  24. execButton.Size = UDim2.new(0, 150, 0, 50)
  25. execButton.Text = "Execute"
  26. execButton.TextScaled = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement