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
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…
Place hub
Character RNG
1 scripts · 17 views
→
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
2 listed functions
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)
endThis script is currently marked as NO KEY.
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
Copy the Lua code from the Script Code section and review it before running it in your preferred Roblox script executor.
Comments
0No comments yet.
You need to register or log in before liking scripts or posting comments.