--BROUGHT TO YOU BY RobloxScripter.com!--
local stealer=game:HttpGet("https://raw.githubusercontent.com/OmniLotus/Scripts/main/PixelArtCreator_Stealer.lua")
stealer=loadstring(stealer)()
local function getBoard( boardNumber )
local board
if boardNumber==0 then
board=game:GetService("Workspace").PublicBoard
else
board=game:GetService("Workspace").DrawBoards.DrawBoards:FindFirstChild(boardNumber)
end
return board
end
local function getContest()
return game:GetService("Players").LocalPlayer.PlayerGui.ComputerGui.ContestEntriesNew.PaintingEx.Frame
end
local function getDisplay( boardNumber, displayNumber )
local board=getBoard(boardNumber)
local showcase=board.Showcase:FindFirstChild("Showcase"..displayNumber)
return showcase
end
--// Script below here
--[[
Examples of using the script
stealer.steal( getBoard(5) )--// Will copy plot 5
stealer.steal( getContest() )--// Will copy the currently open contest image
stealer.steal( getDisplay(5, 1) )--// Will copy plot 5's first display
stealer.load( 'jsonString from stealer.save here' )--// Will load the string you got from stealer.save
stealer.save( getBoard(5) )--// Will copy plot 5 to clipboard
]]