Advertisement
_KRONE_

Untitled

May 23rd, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. --{}PoytoX Source by /KRONE/#6930{}--
  2. --poytoX Source--
  3.  
  4. Frame.Visible = true
  5. local PoytoXScriptExecutorXD = Instance.new("ScreenGui")
  6. local TextLabel = Instance.new("TextLabel")
  7. local ImageLabel = Instance.new("ImageLabel")
  8. local Background = Instance.new("Frame")
  9. local TextBox = Instance.new("TextBox")
  10. local Clear = Instance.new("TextButton")
  11. local Execute = Instance.new("TextButton")
  12.  
  13.  
  14. PoytoXScriptExecutorXD.Name = "PoytoXScriptExecutorXD"
  15. PoytoXScriptExecutorXD.Parent = game.CoreGui
  16.  
  17. TextLabel.Parent = PoytoXScriptExecutorXD
  18. TextLabel.Active = true
  19. TextLabel.BackgroundColor3 = Color3.new(0.270588, 0.0823529, 0.890196)
  20. TextLabel.BackgroundTransparency = 0.5
  21. TextLabel.BorderSizePixel = 0
  22. TextLabel.Draggable = true
  23. TextLabel.Position = UDim2.new(0.5, -150, 0.5, -100)
  24. TextLabel.Size = UDim2.new(0, 300, 0, 20)
  25. TextLabel.Font = Enum.Font.ArialBold
  26. TextLabel.FontSize = Enum.FontSize.Size18
  27. TextLabel.Text = "PoytoX's Script Executor XDDDD"
  28. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  29. TextLabel.TextSize = 18
  30.  
  31. ImageLabel.Parent = TextLabel
  32. ImageLabel.BackgroundTransparency = 1
  33. ImageLabel.Size = UDim2.new(1, 0, 0.5, 0)
  34. ImageLabel.ZIndex = 2
  35. ImageLabel.Image = "rbxasset://textures/BWGradient.png"
  36. ImageLabel.ImageTransparency = 0.5
  37.  
  38. Background.Name = "Background"
  39. Background.Parent = TextLabel
  40. Background.BackgroundColor3 = Color3.new(0, 0, 0)
  41. Background.BackgroundTransparency = 0.30000001192093
  42. Background.BorderSizePixel = 0
  43. Background.Position = UDim2.new(0, 0, 0, 20)
  44. Background.Size = UDim2.new(0, 300, 0, 200)
  45.  
  46. TextBox.Parent = TextLabel
  47. TextBox.BackgroundColor3 = Color3.new(0.0745098, 0.341176, 0.670588)
  48. TextBox.BackgroundTransparency = 0.80000001192093
  49. TextBox.Position = UDim2.new(0, 10, 0, 30)
  50. TextBox.Size = UDim2.new(0, 280, 0, 140)
  51. TextBox.Font = Enum.Font.SourceSans
  52. TextBox.FontSize = Enum.FontSize.Size14
  53. TextBox.Text = "Enter Script"
  54. TextBox.TextColor3 = Color3.new(0, 0, 0)
  55. TextBox.TextSize = 14
  56.  
  57. Clear.Name = "Clear"
  58. Clear.Parent = TextLabel
  59. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  60. Clear.Position = UDim2.new(0, 160, 0, 178)
  61. Clear.Size = UDim2.new(0, 130, 0, 35)
  62. Clear.Font = Enum.Font.SourceSans
  63. Clear.FontSize = Enum.FontSize.Size14
  64. Clear.Text = "CLEAR DAT SHET XDDD"
  65. Clear.TextSize = 14
  66.  
  67. Execute.Name = "Execute"
  68. Execute.Parent = TextLabel
  69. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  70. Execute.Position = UDim2.new(0, 10, 0, 178)
  71. Execute.Size = UDim2.new(0, 130, 0, 35)
  72. Execute.Font = Enum.Font.SourceSans
  73. Execute.FontSize = Enum.FontSize.Size14
  74. Execute.Text = "Execute XDDD"
  75. Execute.TextSize = 14
  76.  
  77. Execute.MouseButton1Click:connect(function()
  78. loadstring(TextBox.Text)()
  79. end)
  80. --
  81. Clear.MouseButton1Click:connect(function()
  82. TextBox.Text = "CLEARED XDDD"
  83. wait(1)
  84. TextBox.Text = ""
  85. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement