Yea the GetAsync() is working like it should but the PostSync() is erroring :/
local function ReturnSync() print(game:GetService('HttpService'):GetAsync("https://code.stypi.com/raw/ma/DatabasePhp/ChatData", true)) end function Sync() wait(5) print('Chat Saving') if (Sky['HttpAble'])==true then local function PostSync() local Http=game:GetService('HttpService') local Link=(Sky['ChatLog']) local MyJSON=Http:JSONDecode(Link) Http:PostAsync("https://code.stypi.com/ma/DatabasePhp/ChatData", MyJSON) wait() return ReturnSync() end else error('Http Not Permited') print('Chat Error') end end coroutine.wrap(function() Sync() end)