Advertisement
Guest User

sp00ky's shit SS executor

a guest
Aug 23rd, 2019
2,273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextBox = Instance.new("TextBox")
  7. local execute = Instance.new("TextButton")
  8. local TextButton = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.Active = true
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.507788181, 0, 0.163390666, 0)
  17. Frame.Size = UDim2.new(0, 516, 0, 278)
  18. Frame.Draggable = true
  19.  
  20. TextBox.Parent = Frame
  21. TextBox.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  22. TextBox.Size = UDim2.new(0, 516, 0, 124)
  23. TextBox.Font = Enum.Font.SourceSans
  24. TextBox.Text = ""
  25. TextBox.TextColor3 = Color3.new(0, 0, 0)
  26. TextBox.TextSize = 20
  27.  
  28. execute.Name = "execute"
  29. execute.Parent = Frame
  30. execute.BackgroundColor3 = Color3.new(0, 1, 1)
  31. execute.Position = UDim2.new(0, 0, 0.446043164, 0)
  32. execute.Size = UDim2.new(0, 200, 0, 50)
  33. execute.Font = Enum.Font.SourceSans
  34. execute.Text = "execute"
  35. execute.TextColor3 = Color3.new(0, 0, 0)
  36. execute.TextSize = 14
  37.  
  38. TextButton.Parent = Frame
  39. TextButton.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  40. TextButton.Position = UDim2.new(0.612403095, 0, 0.446043164, 0)
  41. TextButton.Size = UDim2.new(0, 200, 0, 50)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "clear"
  44. TextButton.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton.TextSize = 14
  46.  
  47. execute.MouseButton1Click:connect(function()
  48. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement