Advertisement
kolijake

SS executor

Aug 20th, 2020
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. -- i dont know want to say :/
  2.  
  3. -- Instances:
  4.  
  5. local ss = Instance.new("ScreenGui")
  6. local main = Instance.new("Frame")
  7. local title = Instance.new("TextLabel")
  8. local TextBox = Instance.new("TextBox")
  9. local execute = Instance.new("TextButton")
  10. local clear = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ss.Name = "ss"
  15. ss.Parent = game.CoreGui
  16. ss.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. main.Name = "main"
  19. main.Parent = ss
  20. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. main.Position = UDim2.new(0.406021893, 0, 0.23260437, 0)
  22. main.Size = UDim2.new(0, 400, 0, 232)
  23. main.Active = true
  24. main.Draggable = true
  25.  
  26. title.Name = "title"
  27. title.Parent = main
  28. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. title.Size = UDim2.new(0, 400, 0, 25)
  30. title.Font = Enum.Font.SourceSans
  31. title.Text = "SS executor"
  32. title.TextColor3 = Color3.fromRGB(255, 1, 5)
  33. title.TextScaled = true
  34. title.TextSize = 14.000
  35. title.TextWrapped = true
  36.  
  37. TextBox.Parent = main
  38. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. TextBox.Position = UDim2.new(0.0149999997, 0, 0.136230603, 0)
  40. TextBox.Size = UDim2.new(0, 388, 0, 136)
  41. TextBox.ClearTextOnFocus = false
  42. TextBox.Font = Enum.Font.SourceSans
  43. TextBox.Text = "-- script here"
  44. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. TextBox.TextSize = 19.000
  46. TextBox.TextWrapped = true
  47. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  48. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  49.  
  50. execute.Name = "execute"
  51. execute.Parent = main
  52. execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. execute.Position = UDim2.new(0.0149999997, 0, 0.75, 0)
  54. execute.Size = UDim2.new(0, 189, 0, 50)
  55. execute.Font = Enum.Font.SourceSans
  56. execute.Text = "execute"
  57. execute.TextColor3 = Color3.fromRGB(38, 32, 221)
  58. execute.TextScaled = true
  59. execute.TextSize = 14.000
  60. execute.TextWrapped = true
  61.  
  62. clear.Name = "clear"
  63. clear.Parent = main
  64. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. clear.Position = UDim2.new(0.512499988, 0, 0.75, 0)
  66. clear.Size = UDim2.new(0, 189, 0, 50)
  67. clear.Font = Enum.Font.SourceSans
  68. clear.Text = "clear"
  69. clear.TextColor3 = Color3.fromRGB(48, 220, 209)
  70. clear.TextScaled = true
  71. clear.TextSize = 14.000
  72. clear.TextWrapped = true
  73.  
  74. execute.MouseButton1Click:connect(function()
  75. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  76. end)
  77.  
  78. clear.MouseButton1Click:connect(function()
  79. TextBox.Text = ""
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement