Advertisement
kolijake

Basic SS

Aug 20th, 2020
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1.  
  2. -- Instances:
  3.  
  4. local BasicSS = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local label = Instance.new("TextLabel")
  7. local TextBox = Instance.new("TextBox")
  8. local execute = Instance.new("TextButton")
  9. local clear = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. BasicSS.Name = "Basic SS"
  14. BasicSS.Parent = game.CoreGui
  15. BasicSS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. main.Name = "main"
  18. main.Parent = BasicSS
  19. main.BackgroundColor3 = Color3.fromRGB(109, 254, 56)
  20. main.Position = UDim2.new(0.355839401, 0, 0.139165014, 0)
  21. main.Size = UDim2.new(0, 421, 0, 267)
  22. main.Active = true
  23. main.Draggable = true
  24.  
  25. label.Name = "label"
  26. label.Parent = main
  27. label.BackgroundColor3 = Color3.fromRGB(82, 255, 93)
  28. label.Size = UDim2.new(0, 421, 0, 33)
  29. label.Font = Enum.Font.SourceSans
  30. label.Text = "Basic SS"
  31. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. label.TextScaled = true
  33. label.TextSize = 14.000
  34. label.TextWrapped = true
  35.  
  36. TextBox.Parent = main
  37. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  38. TextBox.Position = UDim2.new(0.0142517816, 0, 0.167999998, 0)
  39. TextBox.Size = UDim2.new(0, 409, 0, 158)
  40. TextBox.Font = Enum.Font.SourceSans
  41. TextBox.Text = "-- script here"
  42. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. TextBox.TextSize = 19.000
  44. TextBox.TextWrapped = true
  45. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  46. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  47.  
  48. execute.Name = "execute"
  49. execute.Parent = main
  50. execute.BackgroundColor3 = Color3.fromRGB(74, 186, 0)
  51. execute.Position = UDim2.new(0.035629455, 0, 0.801498115, 0)
  52. execute.Size = UDim2.new(0, 165, 0, 40)
  53. execute.Font = Enum.Font.SourceSans
  54. execute.Text = "execute"
  55. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. execute.TextScaled = true
  57. execute.TextSize = 14.000
  58. execute.TextWrapped = true
  59.  
  60. clear.Name = "clear"
  61. clear.Parent = main
  62. clear.BackgroundColor3 = Color3.fromRGB(74, 186, 0)
  63. clear.Position = UDim2.new(0.572446585, 0, 0.801498115, 0)
  64. clear.Size = UDim2.new(0, 165, 0, 40)
  65. clear.Font = Enum.Font.SourceSans
  66. clear.Text = "clear"
  67. clear.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. clear.TextScaled = true
  69. clear.TextSize = 14.000
  70. clear.TextWrapped = true
  71.  
  72. execute.MouseButton1Click:connect(function()
  73. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  74. end)
  75.  
  76. clear.MouseButton1Click:connect(function()
  77. TextBox.Text = ""
  78. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement