Advertisement
Guest User

ZacX Serverside Executor v1.0

a guest
Jul 10th, 2019
19,132
2
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 2 0
  1. ScreenGui = Instance.new("ScreenGui")
  2. Skid = Instance.new("Frame")
  3. Input = Instance.new("TextBox")
  4. Execute = Instance.new("TextButton")
  5. Clear = Instance.new("TextButton")
  6. Name = Instance.new("TextLabel")
  7.  
  8. ScreenGui.Parent = game.CoreGui
  9. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. Skid.Name = "Skid"
  12. Skid.Parent = ScreenGui
  13. Skid.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  14. Skid.BackgroundTransparency = 0.60000002384186
  15. Skid.Position = UDim2.new(0.261363626, 0, 0.615537822, 0)
  16. Skid.Size = UDim2.new(0, 435, 0, 133)
  17.  
  18. Input.Name = "Input"
  19. Input.Parent = Skid
  20. Input.BackgroundColor3 = Color3.new(0, 0, 0)
  21. Input.BackgroundTransparency = 0.40000000596046
  22. Input.Position = UDim2.new(0, 0, 0.165413529, 0)
  23. Input.Size = UDim2.new(0, 435, 0, 61)
  24. Input.Font = Enum.Font.Fantasy
  25. Input.FontSize = Enum.FontSize.Size24
  26. Input.Text = "Paste your require here."
  27. Input.TextColor3 = Color3.new(1, 1, 1)
  28. Input.TextSize = 23
  29. Input.TextWrapped = true
  30.  
  31. Execute.Name = "Execute"
  32. Execute.Parent = Skid
  33. Execute.BackgroundColor3 = Color3.new(0, 0, 0)
  34. Execute.BackgroundTransparency = 0.69999998807907
  35. Execute.Position = UDim2.new(-0.000705341925, 0, 0.622981727, 0)
  36. Execute.Size = UDim2.new(0, 223, 0, 50)
  37. Execute.Font = Enum.Font.SciFi
  38. Execute.FontSize = Enum.FontSize.Size14
  39. Execute.Text = "Execute"
  40. Execute.TextColor3 = Color3.new(0, 0, 0)
  41. Execute.TextScaled = true
  42. Execute.TextSize = 14
  43. Execute.TextWrapped = true
  44.  
  45. Clear.Name = "Clear"
  46. Clear.Parent = Skid
  47. Clear.BackgroundColor3 = Color3.new(0, 0, 0)
  48. Clear.BackgroundTransparency = 0.69999998807907
  49. Clear.Position = UDim2.new(0.513270557, 0, 0.622981727, 0)
  50. Clear.Size = UDim2.new(0, 211, 0, 50)
  51. Clear.Font = Enum.Font.SciFi
  52. Clear.FontSize = Enum.FontSize.Size14
  53. Clear.Text = "Clear"
  54. Clear.TextColor3 = Color3.new(0, 0, 0)
  55. Clear.TextScaled = true
  56. Clear.TextSize = 14
  57. Clear.TextWrapped = true
  58.  
  59. Name.Name = "Name"
  60. Name.Parent = Skid
  61. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Name.BackgroundTransparency = 1
  63. Name.Size = UDim2.new(0, 434, 0, 22)
  64. Name.Font = Enum.Font.Fantasy
  65. Name.FontSize = Enum.FontSize.Size14
  66. Name.Text = "ZacX ServerSide Executor v1.0"
  67. Name.TextColor3 = Color3.new(0, 0, 0)
  68. Name.TextScaled = true
  69. Name.TextSize = 14
  70. Name.TextWrapped = true
  71.  
  72. Execute.MouseButtonClick:connect(function()
  73.     game.ReplicatedStorage.RemoteEvent:FireServer(Input.Text)
  74. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement