DrawingJhon

Untitled

Jul 25th, 2020 (edited)
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.80 KB | None | 0 0
  1. local screen = Instance.new("ScreenGui", owner.PlayerGui)
  2. screen.Name = "Bar"
  3. local frame = Instance.new("Frame", screen)
  4. frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  5. frame.BackgroundTransparency = 0.8
  6. frame.BorderSizePixel = 0
  7. --frame.Position = UDim2.new(0, 0, 0.35, 0)
  8. frame.Position = UDim2.new(0, 0, 0.35, 55)
  9. frame.Size = UDim2.new(1, 0, 0, 50)
  10. frame.Visible = true
  11. local text = Instance.new("TextBox", frame)
  12. text.Font = "Arial"
  13. text.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  14. text.BackgroundTransparency = 0.5
  15. text.FontSize = "Size24"
  16. text.Position = UDim2.new(0, 0, 0, 4)
  17. text.Size = UDim2.new(1, 0, 1, -8)
  18. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  19. text.TextStrokeColor3 = Color3.fromRGB(86, 86, 86)
  20. text.TextStrokeTransparency = 0.7
  21. text.TextWrapped = true
  22. text.Text = "Hola :D"
Add Comment
Please, Sign In to add comment