Starving Artists Script | USE ANY IMAGE AS ARTWORK – PYTHON

Created by Dwuck

Features:

  • USE ANY IMAGE AS ARTWORK – PYTHON

DISCLAIMER: THIS IS NOT ALWAYS GOING TO WORK, INFACT IT FUCKING BREAKS A LOT AND ITS ANNOYING IM NOT GOING TO FIX IT, BUT I GOT 2 PICTURES OF GEORGE FLOYD ON THERE.MAKE SURE THE ART NAME ISN’T FILTERED IM PRETTY SURE THAT WAS ACTUALLY THE RAESON I COULDN’T GET SOME TO WORK!!

EDIT: MAKE SURE YOU SIT IN YOUR ART CHAIR BEFORE TRYING TO SAVE SOMETHING

DATA = WHAT_WAS_SET_TO_YOUR_CLIPBOARD


ART_NAME = "ANYTHING"



function ParseCells(cells)
    local Cells = {}
    for i,v in pairs(cells) do
        success, error = pcall(function()
            Color3.fromHex(v)
        end)
        if not success then
            table.insert(Cells, "ffffff")
            warn(v, success, 'hex failure | replacing with ffffff')
        else
            table.insert(Cells, v)
        end
    end
    return Cells
end

function SaveArt(name, cells)
    local data = {}
    data.Cells = ParseCells(cells)
    data.FrameColor = "ffffff"
    data.Name = name
    game:GetService("ReplicatedStorage").Remotes.CreateArt:InvokeServer(data)
end

SaveArt(ART_NAME, DATA)

Note for anyone who *DOESN’T* have python installed: go to its website, download it, make sure you check a box called “Add Python Path to Environment Variables” on the installer
Ok now after that, go to command prompt and type py -m pip install pyperclip pillow
now everything should be ready, go to where the python file is located, and put the image you want to convert there. Change the FILE_NAME at the very top the file in your directory, then run it.
It will set something to your clipboard, now join the game and paste this into ur executor and edit the variables at the top, and that’s it