Users online: 11

NO KEY

0 views

Character RNG script: auto roll, auto potions

Published byChapa
Script bysnoozehh
PublishedMay 12, 2026

Place Link

Description

  • Auto Roll – Automatically rolls for characters repeatedly until desired rarity or character is obtained
  • Auto Potions – Automatically uses potions or buff items as soon as they are available or on cooldown

Script Code

-- https://youtube.com/@snoozehh --

local materials = workspace.Materials
local targetFolders = {"MediumObbyPotions", "ObbyPotions", "Potions", "WitchsRubble"}
local rollingRemotes = game:GetService("ReplicatedStorage"):WaitForChild("Source"):WaitForChild("Rolling"):WaitForChild("Remotes")
local activateRemote = rollingRemotes:WaitForChild("Activate")
local claimRemote = rollingRemotes:WaitForChild("ClaimReward")

while true do
    activateRemote:InvokeServer()
    claimRemote:FireServer()

    for _, folderName in pairs(targetFolders) do
        local folder = materials:FindFirstChild(folderName)
        if folder then
            for _, item in pairs(folder:GetChildren()) do
                local hitbox = item:FindFirstChild("Hitbox")
                if hitbox and hitbox:IsA("BasePart") then
                    local character = game.Players.LocalPlayer.Character
                    local hrp = character and character:FindFirstChild("HumanoidRootPart")
                    
                    if hrp then
                        firetouchinterest(hrp, hitbox, 0)
                        task.wait()
                        firetouchinterest(hrp, hitbox, 1)
                    end
                end
            end
        end
    end
    task.wait(0.1)
end