Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. local ExampleSS = Instance.new("ScreenGui")
  2. local skid = Instance.new("Frame")
  3. local execute = Instance.new("TextButton")
  4. local source = Instance.new("TextBox")
  5. local clear = Instance.new("TextButton")
  6. local johnnyss = Instance.new("TextLabel")
  7.  
  8. ExampleSS.Name = "Example SS"
  9. ExampleSS.Parent = game.CoreGui
  10.  
  11. skid.Name = "skid"
  12. skid.Parent = ExampleSS
  13. skid.Active = true
  14. skid.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  15. skid.Position = UDim2.new(0.261515975, 0, 0.132687524, 0)
  16. skid.Size = UDim2.new(0, 450, 0, 332)
  17. skid.Draggable = true
  18.  
  19. execute.Name = "execute"
  20. execute.Parent = skid
  21. execute.BackgroundColor3 = Color3.new(0, 0, 0)
  22. execute.Position = UDim2.new(-0.00221507624, 0, 0.769744635, 0)
  23. execute.Size = UDim2.new(0, 204, 0, 50)
  24. execute.Font = Enum.Font.SourceSans
  25. execute.Text = "execute"
  26. execute.TextColor3 = Color3.new(0, 1, 0)
  27. execute.TextScaled = true
  28. execute.TextSize = 14
  29. execute.TextWrapped = true
  30.  
  31. source.Name = "source"
  32. source.Parent = skid
  33. source.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  34. source.BackgroundTransparency = 0.5
  35. source.BorderColor3 = Color3.new(1, 1, 1)
  36. source.Position = UDim2.new(0.0700769052, 0, 0.186876461, 0)
  37. source.Size = UDim2.new(0, 403, 0, 161)
  38. source.Font = Enum.Font.SourceSans
  39. source.Text = ""
  40. source.TextColor3 = Color3.new(0, 0, 0)
  41. source.TextSize = 14
  42.  
  43. clear.Name = "clear"
  44. clear.Parent = skid
  45. clear.BackgroundColor3 = Color3.new(0, 0, 0)
  46. clear.Position = UDim2.new(0.546034157, 0, 0.769198596, 0)
  47. clear.Size = UDim2.new(0, 204, 0, 50)
  48. clear.Font = Enum.Font.SourceSans
  49. clear.Text = "clear"
  50. clear.TextColor3 = Color3.new(0, 1, 0)
  51. clear.TextScaled = true
  52. clear.TextSize = 14
  53. clear.TextWrapped = true
  54.  
  55. johnnyss.Name = "johnny ss"
  56. johnnyss.Parent = skid
  57. johnnyss.BackgroundColor3 = Color3.new(0, 0, 0)
  58. johnnyss.Position = UDim2.new(-0.00590406638, 0, -0.000550419441, 0)
  59. johnnyss.Size = UDim2.new(0, 452, 0, 50)
  60. johnnyss.Font = Enum.Font.SourceSans
  61. johnnyss.Text = "johnny ss made by johnny#6445"
  62. johnnyss.TextColor3 = Color3.new(0, 1, 0)
  63. johnnyss.TextScaled = true
  64. johnnyss.TextSize = 14
  65. johnnyss.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement