Untitled

mail@pastecode.io avatar
unknown
lua
3 years ago
858 B
1
Indexable
Never
local Video = {}
local Pixel = ""
local Videoerrs = {

      Loading = "..."
      Notfound = "Not Found"

}
local Fps = 0
_G.Frames = 0
local Recording = false
local Videoframessecond = {
    
}
local Recordwindow = ""

function Video.Pixel(pixel)
   Pixel = pixel
end
function Video.Fps(fps)
    Fps = fps
end
function Video.Load(adress)
    local Vf = loadstring(game:HttpGet(adress))();
    Vf.Checkframes()
end
function Video.Play(adress)
    local Vf = loadstring(game:HttpGet(adress))();
    Vf.Play()
end
function Record()
    Recording = true
    print("Video Player Client - 2022 - Installed - Recording")
    while Recording do
        table.insert(Videoframessecond, game.CoreGui[Recordwindow].Size .. "|" .. game.CoreGui[Recordwindow].Position)
        wait(0.2)
    end
end
function Createvideo()
   
end