Advertisement
Dr1llz_

Dr1llz money counter

May 25th, 2024 (edited)
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. -- Create a GUI for the cash counter
  2. local gui = Instance.new("ScreenGui")
  3. local frame = Instance.new("Frame")
  4. local label = Instance.new("TextLabel")
  5.  
  6. gui.Name = "Dr1llz mory counter"
  7. frame.Parent = gui
  8. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  9. frame.Size = UDim2.new(0, 200, 0, 50)
  10. frame.Position = UDim2.new(0, 100, 0, 100)
  11.  
  12. label.Parent = frame
  13. label.Text = "Cash: 0"
  14. label.Font = Enum.Font.SourceSans
  15. label.FontSize = Enum.FontSize.Size24
  16. label.TextColor3 = Color3.new(1, 1, 1)
  17.  
  18. -- Connect to the Cash value's Ch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement