Trying to find Rahmonnybot's automatic leaderboard in the data store editor

I’m using Rahmonnybots’ automatic leaderboard in my time trial game and there’s been a lot of cheaters. I want to be able to remove them using the datastore editor but the datastore for the leaderboard system isn’t there. Is there a way to remove certain people from the leaderboard or would I have to reset the whole leaderboard?
Screenshot 2025-01-21 5.14.29 PM

Could you perhaps share the links of the resources used? I’m not quite sure what leaderboard system you’re using, nor the exact datastore editor you have.

Is there nothing that can be done?

Okay, just looking at this, I’m pretty sure the Plugin you’re using to edit the DataStores doesn’t support OrderedDataStores.

If you’re wondering what the name of your DataStore is, it can be found at the top of your LBScriptTimer script inside ServerScriptService. For e.g.:

local DataVer = "900"

local DataStoreService = game:GetService("DataStoreService")
local Store = DataStoreService:GetOrderedDataStore(DataVer.."LeaderBoardData")

So the Datastore’s name would be 900LeaderBoardData.


There are multiple free and easy-to-use datastore editors out here. But if you need a suggestion, I would recommend DataDelve — easy, free datastore editor - they have a good user UI and supports changing values of OrderedDataStores.

P.S. I’m looking at the Scripts in your model you’ve used right now, and I found this snippet of code at the top of the Script which updates the leaderboard…

local DataVer = "900"

for i,v in pairs(game.Players:GetPlayers()) do
	game:GetService("TeleportService"):Teleport(6078492585,v)
end

local DataStoreService = game:GetService("DataStoreService")
local Store = DataStoreService:GetOrderedDataStore(DataVer.."LeaderBoardData")
local RationalDigits = 2

I don’t know if you’re aware of this, but please make sure to check scripts of free models for any viruses! You can use the Find All/Replace All script tool by pressing Ctrl + Shift + F and searching keywords found most commonly in malicious scripts, like require or Teleport.

Thank you so much and don’t worry I knew about the teleport at the top I made sure teleport to other games is off