#Is there a Script to edit Databases?

1 messages · Page 1 of 1 (latest)

kind flame
#

Hello, Is there a database script to edit this, our game was raided and I cannot find a way to remove these levels they used exploit

pastel vine
limpid pond
#

Simplest way

kind flame
limpid pond
#

table

#

if table.find

#

continue

kind flame
#

alright thanks!

kind flame
split crane
#

and if u havent yet check any replication that can be exploited, they probably spammed an event

shell halo
#

why blacklist

#

if they cheated then ban them

kind flame
#

idk how to change the database if they are not ingame

shell halo
#

dashboard has datastore manager

#

it also has the ban manager

split crane
#

remove async their name or id whatever u store the data with

shell halo
#

tho i think they dont show ordered stores

#

can run it from the command line in studio

kind flame
#

sorry for the low quality, but how can i change?

split crane
#

delete their data entries

kind flame
kind flame
wooden templeBOT
#

studio** You are now Level 2! **studio

kind flame
split crane
pastel vine
# kind flame Hello, Is there a database script to edit this, our game was raided and I cannot...

try this

local DataStoreService = game:GetService("DataStoreService")

local datastore = DataStoreService:GetDataStore("ur datastore")

local userIds = {
0,
0,
}

for _, userId in ipairs(userIds) do
local success, err = pcall(function()
datastore:SetAsync(tostring(userId), {VALUE = 0, VALUEE = 0, VALUEEE = 0})
end)
if success then
print("datastore reset for:", userId)
else
warn("error when reseting", userId, err)
end
end

print("reset finished")