Advertisement
Guest User

-- SEZANG'S (ME) SS EXECUTOR

a guest
Aug 22nd, 2019
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. --sezang's (my alt's) ss executor
  2. -- Instances:
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextBox = Instance.new("TextBox")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(0.196078, 1, 0.0980392)
  14. Frame.Position = UDim2.new(0.170337737, 0, 0.175895765, 0)
  15. Frame.Size = UDim2.new(0, 449, 0, 397)
  16.  
  17. TextBox.Parent = ScreenGui
  18. TextBox.BackgroundColor3 = Color3.new(0.988235, 0, 0.0235294)
  19. TextBox.BorderColor3 = Color3.new(0.988235, 0, 0.0235294)
  20. TextBox.Position = UDim2.new(0.193832606, 0, 0.242671013, 0)
  21. TextBox.Size = UDim2.new(0, 417, 0, 277)
  22. TextBox.Font = Enum.Font.ArialBold
  23. TextBox.Text = ""
  24. TextBox.TextColor3 = Color3.new(0, 0, 0)
  25. TextBox.TextSize = 20
  26.  
  27. TextLabel.Parent = ScreenGui
  28. TextLabel.BackgroundColor3 = Color3.new(0.196078, 1, 0.0588235)
  29. TextLabel.BorderColor3 = Color3.new(0.196078, 1, 0.0627451)
  30. TextLabel.Position = UDim2.new(0.352422893, 0, 0.185667753, 0)
  31. TextLabel.Size = UDim2.new(0, 200, 0, 29)
  32. TextLabel.Font = Enum.Font.ArialBold
  33. TextLabel.Text = "sezang's SS Executor"
  34. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  35. TextLabel.TextScaled = true
  36. TextLabel.TextSize = 14
  37. TextLabel.TextWrapped = true
  38.  
  39. TextButton.Parent = ScreenGui
  40. TextButton.BackgroundColor3 = Color3.new(0.0666667, 0, 1)
  41. TextButton.Position = UDim2.new(0.193832606, 0, 0.718241036, 0)
  42. TextButton.Size = UDim2.new(0, 200, 0, 50)
  43. TextButton.Font = Enum.Font.ArialBold
  44. TextButton.Text = "Execute"
  45. TextButton.TextColor3 = Color3.new(0, 0, 0)
  46. TextButton.TextSize = 14
  47.  
  48. TextButton_2.Parent = ScreenGui
  49. TextButton_2.BackgroundColor3 = Color3.new(0.0666667, 0, 1)
  50. TextButton_2.Position = UDim2.new(0.52129221, 0, 0.718241036, 0)
  51. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  52. TextButton_2.Font = Enum.Font.ArialBold
  53. TextButton_2.Text = "Clear"
  54. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  55. TextButton_2.TextSize = 14
  56.  
  57. execute.MouseButton1Click:connect(function()
  58. game.ReplicatedStorage.RemoteEvent:FireServer(source.Text)
  59. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement