RuineKiller

SS Executor

Oct 8th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. -- Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local Scroll = Instance.new("ScrollingFrame")
  5. local Code = Instance.new("TextBox")
  6. local Execute = Instance.new("TextButton")
  7. local Clear = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. ScreenGui.Parent = game.CoreGui
  12. ScreenGui.ResetOnSpawn = false
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  16. Frame.Position = UDim2.new(0.1863354, 0, 0.20240137, 0)
  17. Frame.Size = UDim2.new(0, 482, 0, 280)
  18. Frame.Draggable = true
  19. Frame.Active = true
  20.  
  21. Scroll.Name = "Scroll"
  22. Scroll.Parent = Frame
  23. Scroll.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  24. Scroll.Position = UDim2.new(0.0344918407, 0, 0.0709876493, 0)
  25. Scroll.Size = UDim2.new(0, 443, 0, 203)
  26.  
  27. Code.Name = "Code"
  28. Code.Parent = Scroll
  29. Code.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  30. Code.Position = UDim2.new(7.78819667e-05, 0, -0.000350952148, 0)
  31. Code.Size = UDim2.new(0, 443, 0, 203)
  32. Code.Font = Enum.Font.SourceSans
  33. Code.PlaceholderText = "Scripts here"
  34. Code.Text = ""
  35. Code.TextColor3 = Color3.new(1, 1, 1)
  36. Code.TextSize = 20
  37. Code.TextXAlignment = Enum.TextXAlignment.Left
  38. Code.TextYAlignment = Enum.TextYAlignment.Top
  39. Code.ClearTextOnFocus = false
  40.  
  41. Execute.Name = "Execute"
  42. Execute.Parent = Frame
  43. Execute.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  44. Execute.Position = UDim2.new(0.0344918407, 0, 0.827160418, 0)
  45. Execute.Size = UDim2.new(0, 115, 0, 36)
  46. Execute.Font = Enum.Font.SourceSans
  47. Execute.Text = "Execute"
  48. Execute.TextColor3 = Color3.new(1, 1, 1)
  49. Execute.TextSize = 14
  50. Execute.MouseButton1Click:Connect(function()
  51. game.ReplicatedStorage.RemoteEvent:FireServer(Code.Text)
  52. end)
  53.  
  54. Clear.Name = "Clear"
  55. Clear.Parent = Frame
  56. Clear.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  57. Clear.Position = UDim2.new(0.295903772, 0, 0.827160418, 0)
  58. Clear.Size = UDim2.new(0, 115, 0, 36)
  59. Clear.Font = Enum.Font.SourceSans
  60. Clear.Text = "Clear"
  61. Clear.TextColor3 = Color3.new(1, 1, 1)
  62. Clear.TextSize = 14
  63. Clear.MouseButton1Click:Connect(function()
  64. Code.Text = ""
  65. end)
Add Comment
Please, Sign In to add comment