I see this was marked as solved already, but for future reference, HttpService:GetAsync() does not return an object, it returns a status code and whatever the body of the request was.
local http = game:GetService("HttpService")
local js = http:GetAsync("http://worldclockapi.com/api/json/utc/now")
print(http:JSONDecode(js).currentDateTime)