Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Create a GUI for the cash counter
- local gui = Instance.new("ScreenGui")
- local frame = Instance.new("Frame")
- local label = Instance.new("TextLabel")
- gui.Name = "Dr1llz mory counter"
- frame.Parent = gui
- frame.BackgroundColor3 = Color3.new(0, 0, 0)
- frame.Size = UDim2.new(0, 200, 0, 50)
- frame.Position = UDim2.new(0, 100, 0, 100)
- label.Parent = frame
- label.Text = "Cash: 0"
- label.Font = Enum.Font.SourceSans
- label.FontSize = Enum.FontSize.Size24
- label.TextColor3 = Color3.new(1, 1, 1)
- -- Connect to the Cash value's Ch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement