SKIDNOOB

INJECTED

Mar 21st, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Injected = Instance.new("ScreenGui")
  7. local FIRSTFRAME = Instance.new("Frame")
  8. local Frame = Instance.new("Frame")
  9. local Frame_2 = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12. local TextLabel_3 = Instance.new("TextLabel")
  13. local ImageLabel = Instance.new("ImageLabel")
  14. local Close = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. Injected.Name = "Injected"
  19. Injected.Parent = game.CoreGui
  20.  
  21. FIRSTFRAME.Name = "FIRSTFRAME"
  22. FIRSTFRAME.Parent = Injected
  23. FIRSTFRAME.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  24. FIRSTFRAME.BorderSizePixel = 0
  25. FIRSTFRAME.Position = UDim2.new(0.379444093, 0, 0.339021623, 0)
  26. FIRSTFRAME.Size = UDim2.new(0, 499, 0, 283)
  27.  
  28. Frame.Parent = FIRSTFRAME
  29. Frame.BackgroundColor3 = Color3.fromRGB(227, 35, 68)
  30. Frame.BorderSizePixel = 0
  31. Frame.Position = UDim2.new(0.021633476, 0, 0.0399064235, 0)
  32. Frame.Size = UDim2.new(0, 476, 0, 4)
  33.  
  34. Frame_2.Parent = FIRSTFRAME
  35. Frame_2.BackgroundColor3 = Color3.fromRGB(227, 35, 68)
  36. Frame_2.BorderSizePixel = 0
  37. Frame_2.Position = UDim2.new(0.021633476, 0, 0.951567233, 0)
  38. Frame_2.Size = UDim2.new(0, 476, 0, 4)
  39.  
  40. TextLabel.Parent = FIRSTFRAME
  41. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. TextLabel.BackgroundTransparency = 1.000
  43. TextLabel.Position = UDim2.new(0.162324652, 0, 0.378091902, 0)
  44. TextLabel.Size = UDim2.new(0, 167, 0, 38)
  45. TextLabel.Font = Enum.Font.SourceSans
  46. TextLabel.Text = "POWERFUL"
  47. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. TextLabel.TextScaled = true
  49. TextLabel.TextSize = 14.000
  50. TextLabel.TextWrapped = true
  51.  
  52. TextLabel_2.Parent = FIRSTFRAME
  53. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  54. TextLabel_2.BackgroundTransparency = 1.000
  55. TextLabel_2.Position = UDim2.new(0.496993989, 0, 0.3745583, 0)
  56. TextLabel_2.Size = UDim2.new(0, 177, 0, 41)
  57. TextLabel_2.Font = Enum.Font.SourceSansLight
  58. TextLabel_2.Text = "LUA EXECUTOR"
  59. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  60. TextLabel_2.TextScaled = true
  61. TextLabel_2.TextSize = 14.000
  62. TextLabel_2.TextWrapped = true
  63.  
  64. TextLabel_3.Parent = FIRSTFRAME
  65. TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  66. TextLabel_3.BackgroundTransparency = 1.000
  67. TextLabel_3.Position = UDim2.new(0.380761534, 0, 0.561837435, 0)
  68. TextLabel_3.Size = UDim2.new(0, 114, 0, 29)
  69. TextLabel_3.Font = Enum.Font.SourceSans
  70. TextLabel_3.Text = "INJECTED"
  71. TextLabel_3.TextColor3 = Color3.fromRGB(227, 35, 68)
  72. TextLabel_3.TextScaled = true
  73. TextLabel_3.TextSize = 14.000
  74. TextLabel_3.TextWrapped = true
  75.  
  76. ImageLabel.Parent = FIRSTFRAME
  77. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  78. ImageLabel.BackgroundTransparency = 1.000
  79. ImageLabel.Position = UDim2.new(0.344689369, 0, 0.0848056525, 0)
  80. ImageLabel.Size = UDim2.new(0, 150, 0, 83)
  81. ImageLabel.Image = "http://www.roblox.com/asset/?id=4802589710"
  82.  
  83. Close.Name = "Close"
  84. Close.Parent = FIRSTFRAME
  85. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  86. Close.BackgroundTransparency = 1.000
  87. Close.Position = UDim2.new(0.296593189, 0, 0.73144877, 0)
  88. Close.Size = UDim2.new(0, 200, 0, 33)
  89. Close.Font = Enum.Font.SourceSans
  90. Close.Text = "Close"
  91. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  92. Close.TextSize = 15.000
  93. Close.MouseButton1Down:connect(function()
  94. FIRSTFRAME.Visible = false
  95. end)
Advertisement
Add Comment
Please, Sign In to add comment