Advertisement
Xyper

Script Executer Script for ROBLOX

Jun 18th, 2019
5,434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1. -- Script executer script XD. Idk why you would need this, well I think i need it for quick execution without crashing and stuff like that lol. -Xyper
  2.  
  3. local S1 = Instance.new("ScreenGui")
  4. local S1Frame = Instance.new("Frame")
  5. local Execute = Instance.new("TextButton")
  6. local Clear = Instance.new("TextButton")
  7. local Input = Instance.new("TextBox")
  8. local OpenClose = Instance.new("TextButton")
  9.  
  10. S1.Name = "S1"
  11. S1.Parent = game.Players.LocalPlayer.PlayerGui
  12. S1.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13. S1.ResetOnSpawn = false
  14. S1Frame.Name = "S1Frame"
  15. S1Frame.Parent = S1
  16. S1Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  17. S1Frame.Position = UDim2.new(0, 0, 0.248875543, 0)
  18. S1Frame.Size = UDim2.new(0, 545, 0, 384)
  19. S1Frame.Style = Enum.FrameStyle.DropShadow
  20. S1Frame.Visible = false
  21.  
  22. Execute.Name = "Execute"
  23. Execute.Parent = S1Frame
  24. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  25. Execute.Position = UDim2.new(0.00872371532, 0, 0.880995035, 0)
  26. Execute.Size = UDim2.new(0, 106, 0, 35)
  27. Execute.Style = Enum.ButtonStyle.RobloxButtonDefault
  28. Execute.Font = Enum.Font.SourceSans
  29. Execute.Text = "Execute"
  30. Execute.TextColor3 = Color3.new(1, 1, 1)
  31. Execute.TextScaled = true
  32. Execute.TextSize = 14
  33. Execute.TextWrapped = true
  34. -- MADE BY XYPER IN PASTEBIN
  35. Clear.Name = "Clear"
  36. Clear.Parent = S1Frame
  37. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  38. Clear.Position = UDim2.new(0.228907213, 0, 0.880995035, 0)
  39. Clear.Size = UDim2.new(0, 106, 0, 35)
  40. Clear.Style = Enum.ButtonStyle.RobloxButtonDefault
  41. Clear.Font = Enum.Font.SourceSans
  42. Clear.Text = "Clear"
  43. Clear.TextColor3 = Color3.new(1, 1, 1)
  44. Clear.TextScaled = true
  45. Clear.TextSize = 14
  46. Clear.TextWrapped = true
  47.  
  48. Input.Name = "Input"
  49. Input.Parent = S1Frame
  50. Input.BackgroundColor3 = Color3.new(0.0117647, 0, 0.184314)
  51. Input.BackgroundTransparency = 0.5
  52. Input.Position = UDim2.new(0.0406618454, 0, 0.050907772, 0)
  53. Input.Size = UDim2.new(0, 486, 0, 300)
  54. Input.Font = Enum.Font.SourceSans
  55. print("Made by Xyper in Pastebin")
  56. Input.PlaceholderText = "Code goes here"
  57. Input.Text = ""
  58. Input.TextColor3 = Color3.new(255, 255, 255)
  59. Input.TextSize = 14
  60. Input.TextXAlignment = Enum.TextXAlignment.Left
  61. Input.TextYAlignment = Enum.TextYAlignment.Top
  62. -- MADE BY XYPER IN PASTEBIN
  63. OpenClose.Name = "Open/Close"
  64. OpenClose.Parent = S1
  65. OpenClose.BackgroundColor3 = Color3.new(1, 1, 1)
  66. OpenClose.Position = UDim2.new(0, 0, 0.88905549, 0)
  67. OpenClose.Size = UDim2.new(0, 103, 0, 34)
  68. OpenClose.Style = Enum.ButtonStyle.RobloxButtonDefault
  69. OpenClose.Font = Enum.Font.SourceSans
  70. OpenClose.Text = "Show/Hide"
  71. OpenClose.TextColor3 = Color3.new(1, 1, 1)
  72. OpenClose.TextScaled = true
  73. OpenClose.TextSize = 14
  74. OpenClose.TextWrapped = true
  75.  
  76. -- Scripts
  77.  
  78. OpenClose.MouseButton1Click:Connect(function()
  79. if S1Frame.Visible == false then
  80. S1Frame.Visible = true
  81. else
  82. S1Frame.Visible = false
  83. end
  84. end)
  85. -- MADY BY XYPER IN PASTEBIN
  86. Execute.MouseButton1Click:Connect(function()
  87. loadstring(Input.Text)
  88. end)
  89.  
  90. Clear.MouseButton1Click:Connect(function()
  91. Input.Text = ""
  92. end)
  93.  
  94. -- Xyper (Pastebin)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement