DumbShit

Untitled

Feb 5th, 2020
11,494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. local InjectedGUI = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local TextLabel_2 = Instance.new("TextLabel")
  5.  
  6. InjectedGUI.Name = "Injected GUI"
  7. InjectedGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8. InjectedGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. Frame.Name = "Frame"
  11. Frame.Parent = InjectedGUI
  12. Frame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  13. Frame.BorderColor3 = Color3.new(1, 1, 1)
  14. Frame.BorderSizePixel = 0
  15. Frame.Position = UDim2.new(0, 0, 0, 0)
  16. Frame.Size = UDim2.new(0, 222, 0, 71)
  17.  
  18. TextLabel.Parent = Frame
  19. TextLabel.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  20. TextLabel.BorderSizePixel = 0
  21. TextLabel.Position = UDim2.new(0.0495495498, 0, 0.140845075, 0)
  22. TextLabel.Size = UDim2.new(0, 200, 0, 31)
  23. TextLabel.Font = Enum.Font.Gotham
  24. TextLabel.Text = "101"
  25. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  26. TextLabel.TextScaled = true
  27. TextLabel.TextSize = 14
  28. TextLabel.TextWrapped = true
  29.  
  30. TextLabel_2.Parent = Frame
  31. TextLabel_2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  32. TextLabel_2.BorderSizePixel = 0
  33. TextLabel_2.Position = UDim2.new(0.0810810775, 0, 0.577464819, 0)
  34. TextLabel_2.Size = UDim2.new(0, 185, 0, 20)
  35. TextLabel_2.Font = Enum.Font.Gotham
  36. TextLabel_2.Text = "has been injected!"
  37. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  38. TextLabel_2.TextScaled = true
  39. TextLabel_2.TextSize = 14
  40. TextLabel_2.TextWrapped = true
  41.  
  42. Frame:TweenPosition(UDim2.new(0.774634957, 0, 0.817836821, 0))
  43. wait(5)
  44. Frame:TweenPosition(UDim2.new(0, 0, 0, 0))
  45. InjectedGUI:Destroy()
Add Comment
Please, Sign In to add comment