Advertisement
Guest User

Untitled

a guest
Nov 9th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Scripts = Instance.new("TextBox")
  9. local SSExecutor = Instance.new("TextLabel")
  10. local Execute = Instance.new("TextButton")
  11. local Clear = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.Active = true
  20. Frame.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  21. Frame.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  22. Frame.BorderSizePixel = 0
  23. Frame.Position = UDim2.new(0.257142842, 0, 0.226751596, 0)
  24. Frame.Size = UDim2.new(0, 492, 0, 359)
  25. Frame.Draggable = true
  26.  
  27. Scripts.Name = "Scripts"
  28. Scripts.Parent = Frame
  29. Scripts.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  30. Scripts.BorderSizePixel = 0
  31. Scripts.Position = UDim2.new(-0.000622779131, 0, -0.00127387047, 0)
  32. Scripts.Size = UDim2.new(0, 492, 0, 179)
  33. Scripts.Font = Enum.Font.Cartoon
  34. Scripts.Text = ""
  35. Scripts.TextColor3 = Color3.new(0, 0, 0)
  36. Scripts.TextScaled = true
  37. Scripts.TextSize = 25
  38. Scripts.TextWrapped = true
  39.  
  40. SSExecutor.Name = "SS Executor"
  41. SSExecutor.Parent = Frame
  42. SSExecutor.Active = true
  43. SSExecutor.BackgroundColor3 = Color3.new(0.137255, 0.119608, 0.137255)
  44. SSExecutor.BorderSizePixel = 0
  45. SSExecutor.Position = UDim2.new(0, 0, 0.497072518, 0)
  46. SSExecutor.Size = UDim2.new(0, 492, 0, 43)
  47. SSExecutor.Font = Enum.Font.Cartoon
  48. SSExecutor.Text = "ServerSide Executor"
  49. SSExecutor.TextColor3 = Color3.new(0, 0, 0)
  50. SSExecutor.TextScaled = true
  51. SSExecutor.TextSize = 14
  52. SSExecutor.TextWrapped = true
  53.  
  54. Execute.Name = "Execute"
  55. Execute.Parent = ScreenGui
  56. Execute.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  57. Execute.BorderSizePixel = 0
  58. Execute.Position = UDim2.new(0.266009867, 0, 0.559235692, 0)
  59. Execute.Size = UDim2.new(0, 200, 0, 50)
  60. Execute.Font = Enum.Font.Cartoon
  61. Execute.Text = "Execute"
  62. Execute.TextColor3 = Color3.new(0, 0, 0)
  63. Execute.TextScaled = true
  64. Execute.TextSize = 14
  65. Execute.TextWrapped = true
  66. Execute.MouseButton1Click:connect(function()
  67. game.ReplicatedStorage.RemoteEvent:FireServer(Scripts.Text)
  68. end)
  69.  
  70. Clear.Name = "Clear"
  71. Clear.Parent = ScreenGui
  72. Clear.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  73. Clear.BorderSizePixel = 0
  74. Clear.Position = UDim2.new(0.53103447, 0, 0.559235692, 0)
  75. Clear.Size = UDim2.new(0, 204, 0, 50)
  76. Clear.Font = Enum.Font.Cartoon
  77. Clear.Text = "Clear"
  78. Clear.TextColor3 = Color3.new(0, 0, 0)
  79. Clear.TextScaled = true
  80. Clear.TextSize = 14
  81. Clear.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement