Our Discord Channel Our Telegram
NO KEY

Character RNG script: auto roll, auto potions

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…

Open Roblox Game
Place hub Character RNG 1 scripts · 17 views

Script 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

Key Functions

2 listed functions

✓ 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

32 lines · 1 KB · Lua

Review the code before running it. Use scripts responsibly and only with tools you trust.

-- 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

FAQ

Is this Character RNG script keyless?

This script is currently marked as NO KEY.

What features does this script include?

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

How do I use this script?

Copy the Lua code from the Script Code section and review it before running it in your preferred Roblox script executor.

Comments

0

No comments yet.