Help in making a paint tool?
Hi SH,
I've been trying to make a HopperBin, that on selected, one is able to click and drag across the screen, leaving a trail of black, tiny blocks. (to simulate drawing)
03 | newp = Instance.new( "Part" , workspace) |
04 | newp.Size = Vector 3. new( 0.1 , 0.1 , 0.1 ) |
06 | newp.BrickColor = BrickColor.new( 0 , 0 , 0 ) |
14 | hpb.Selected:connect( function (m) |
15 | m.Button 1 Down:connect( function () hold = true onClicked(m) end ) |
16 | m.Button 1 Up:connect( function () hold = false end ) |
I really have no idea what's going on, I'm trying to make a paint tool, and it just won't work! Any ideas?