Remove error logger

This commit is contained in:
I-Have-An-Issue 2023-03-03 21:41:15 -05:00
parent f4e6b4a0fb
commit fbd6c7a3f7
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 1 additions and 7 deletions

View File

@ -29,7 +29,7 @@ function update(LeavingPlayer)
end
function keepAlive(LeavingPlayer)
local success, result = pcall(function()
pcall(function()
game:GetService("HttpService").HttpEnabled = true
local body = game:GetService("HttpService"):JSONEncode({
@ -41,12 +41,6 @@ function keepAlive(LeavingPlayer)
return game:GetService("HttpService"):PostAsync("https://dungblx.cf/API/KeepAlive", body)
end)
if not success then
local Hint = Instance.new("Hint")
Hint.Text = result
Hint.Parent = workspace
end
end
-----------------------------------END UTILITY FUNCTIONS -------------------------