Roblox Script - starving artists | Bitmapper [Upload ANY Art ]

 


Steps:
Download (CLICK ME | .Net)
Download the .Net Runtime
Download 64x
Open Bitmapper
Join The game
Select the image
Make sure scale is 32x
Once you imported the image press "clipboard"
Paste into the script
Go to drawing area and execute the script
You can now sell the art (Recommended to wait 3-5minutes to make sure you do not get a warning


Script:

-- Paste what you copied from clipboard above--


local function color_pixel(index,color)

local connection = (getconnections(UI[tostring(index)].MouseButton1Click))[1]

setupvalue(connection.Function,9,color)

connection.Function()

end

local low_quality = 25


lq=low_quality

for i=1,1024 do

   v=imageBytes[i]

   if not v  or not v.R or not v.G or not v.B then continue end

  -- if v.R == 0 and v.G == 0 and v.B == 0 then v = {R=255,G=255,B=255} end

  local r,g,b = v.R or 0,v.G or 0,v.B or 0

  print(i, r-(r%lq),g-(g%lq),b-(b%lq))

  color_pixel(i,Color3.fromRGB(r-(r%lq),g-(g%lq),b-(b%lq)))

end


Previous Post Next Post