Anime Clash Simulator Script | RINGS COLLECTOR, COIN COLLECTOR

Created by grandpapapa

Features:

--THIS IS FOR RINGS 
while wait(2) do
for _,v in pairs(game:GetService("Workspace").Scriptable.CurrencyRings:GetDescendants()) do
if v:IsA("TouchTransmitter") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0) --0 is touch
wait()
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1) -- 1 is untouch
end
end
end
-- THIS IS FOR THE COINS ON THE GROUND
while wait(2) do
for _,v in pairs(game:GetService("Workspace").Scriptable.CurrencySpawner:GetDescendants()) do
if v:IsA("TouchTransmitter") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0) --0 is touch
wait()
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1) -- 1 is untouch
end
end
end