From 0e0a9dde16b716c05b5d15fb53b719d8e887e5b5 Mon Sep 17 00:00:00 2001 From: tommy Date: Sat, 18 Jan 2025 15:10:13 -0500 Subject: [PATCH] Officially remove the usage of `GetUserOnlineStatus` Roblox just removed the endpoint with no warning --- src/SlashCommands/User.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SlashCommands/User.lua b/src/SlashCommands/User.lua index 199289f..ab0f630 100644 --- a/src/SlashCommands/User.lua +++ b/src/SlashCommands/User.lua @@ -115,7 +115,7 @@ local function Callback(Interaction, Command, Args) end local usernameHistoryString = table.concat(usernameHistoryTable,', ') - local onlineStatus_info = API:GetUserOnlineStatus(id) or {lastLocation="Unknown", lastOnline=0, userPresenceType=-1} + local onlineStatus_info = {lastLocation="Unknown", lastOnline=0, userPresenceType=-1} -- table.foreach(onlineStatus_info,print) local LastLocation = onlineStatus_info.lastLocation