DrakrMakr

WIP Non FE Visualizer

Aug 28th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. local plr = game:GetService("Players").LocalPlayer
  3. local mouse = plr:GetMouse()
  4. local plrgui = plr.PlayerGui
  5. local sgui = Instance.new('ScreenGui',plrgui)
  6. sgui.Name = 'CMDBar'
  7. local bar = Instance.new('TextBox',sgui)
  8. bar.Name = 'Bar'
  9. bar.Size = UDim2.new(1,0,0.03,0)
  10. bar.Position = UDim2.new(0,0,0.97,0)
  11. bar.BackgroundColor3 = Color3.new(70/255,70/255,70/255)
  12. bar.BorderSizePixel = 0
  13. bar.TextXAlignment = 'Left'
  14. bar.TextColor3 = Color3.new(255/255,255/255,255/255)
  15. bar.Font = 'ArialBold'
  16. bar.FontSize = 'Size14'
Add Comment
Please, Sign In to add comment