Advertisement
EclipseYoutube

injectmsg

May 27th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local title = Instance.new("TextLabel")
  3.  
  4. ScreenGui.Parent = game.CoreGui
  5. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  6.  
  7. title.Name = "title"
  8. title.Parent = ScreenGui
  9. title.BackgroundColor3 = Color3.new(1, 1, 1)
  10. title.BackgroundTransparency = 1
  11. title.Position = UDim2.new(-0.00912280753, 0, 0.958774984, 0)
  12. title.Size = UDim2.new(0, 378, 0, 50)
  13. title.Font = Enum.Font.Code
  14. title.Text = " Loaded"
  15. title.TextColor3 = Color3.new(1, 1, 1)
  16. title.TextSize = 17
  17. title.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement