I have my script that checks the likes but it keeps saying argument i missing or nil
this is my code
`lua
local HttpProxy = require(game.Workspace.HttpProxyService:Clone())
while wait(0) do
local Val
local Count
local Sucsess, Err = pcall(function()
Val = game.HttpService:JSONEncode(HttpProxy:GetAsync("https://games.roblox.com/v1/games/votes?universeIds=111958650").upVotes)
end)
if Sucsess then
print(Val)
else
print(Err)
end