--SCRIPT 1
loadstring(game:HttpGet('https://pastebin.com/raw/A0BfJbf8'))()
--SCRIPT 2
loadstring(game:HttpGet("https://raw.githubusercontent.com/Aaron999S/FiberHub/main/Main"))()
--SCRIPT 3
loadstring(game:HttpGet('https://raw.githubusercontent.com/SenhorLDS/ProjectLDSHUB/main/OfficialScript'))()
--SCRIPT 4
loadstring(game:HttpGet('https://whimper.xyz/cathub.lua'))()
--SCRIPT 5
local tool = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
tool.Name = "DELETE TOOL"
tool.RequiresHandle = false
tool.CanBeDropped = false
tool.Equipped:Connect(function(mouse)
mouse.Button1Down:connect(function()
if mouse.Target and mouse.Target.Parent then
game:GetService("ReplicatedStorage").DeleteCar:FireServer(mouse.Target)
end
end)
end)