I'm trying to remove an exploiters leaderstats for my game, but he isn't rejoining the game and I don't know how to get rid of the leaderstats while he's offline. Help?
Could you set a script that removes his leader stats as soon as he joins, Using his user Id.
I don't know if you can remove if he is not in the game, It added is data to the game from the roblox severs when he joins. To remove it you have to access the roblox servers but only staff can do that, and it would be burred in the sever so the roblox stuff might not be able to get it out.
I don't think there's a way to request an offline player's data.
Alternatively, you can set up a script that listens for when a player joined. Check if that player's UserId matches the exploiters UserId you wanna ban, and if it matches, clear their data.
local ExploiterId = 1 -- bad guy's id game:GetService("Players").PlayerAdded:Connect(function(player) if player.UserId == ExploiterId then -- clear bad guy's data end end)