-- 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
Comments
No comments yet
Be the first to share your thoughts!