Thank you for using our website
Your script:
--https://rbscripts.com
warn("Requiring API")do
loadstring(game:HttpGet("https://pastebin.com/raw/KMc6aBky"))();
end warn("API Loaded")
local child = object.child
local descendant = object.descendant
local check = object.check
local Tycoon = game.Players.LocalPlayer.Tycoon.Value
descendant.foreach(Tycoon.Items.OftenFiltered.Surface,"Bill",function(Bill)
local Settings = {
["name"] = "CollectBill",
["model"] = Bill.Parent
}
game.ReplicatedStorage.Events.ClientTycoonInput:FireServer(Tycoon,Settings)
end)
local Connection,Code = descendant.on_add(Tycoon.Items.OftenFiltered.Surface,function(Bill)
check.it(Bill.Name == "Bill",function()
local Settings = {
["name"] = "CollectBill",
["model"] = Bill.Parent
}
game.ReplicatedStorage.Events.ClientTycoonInput:FireServer(Tycoon,Settings)
end)
end)