What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Grace unlock all doodles

Version / Update: v1.0.0
Download / Script Link
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ClientPlayerData = require(ReplicatedStorage:WaitForChild("ClientPlayerData"))
ClientPlayerData:Get()
local GraceBase = ReplicatedStorage:WaitForChild("GraceBase")
local StickersFolder = GraceBase:WaitForChild("Stickers")
local unlockRemote = ReplicatedStorage.ClientPlayerData.UnlockSticker
local updatedSticker = ClientPlayerData.UpdatedSticker
for _, sticker in ipairs(StickersFolder:GetChildren()) do
local id = sticker.Name
if not ClientPlayerData.Data.Stickers[id] then
ClientPlayerData.Data.Stickers[id] = true
unlockRemote:FireServer(id)
end
end
updatedSticker:Fire()
[ View More ]
0c9eb1a7-efe6-4e52-a809-c54e95d7259a.webp


Unlocks All doodles automatically
 
Back
Top