Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local InsertService = game:GetService("InsertService")
- local LocalPlayer = Players.LocalPlayer
- -- Ban Hammer gear asset ID
- local banHammerID = 68086192
- -- Insert the Ban Hammer
- local success, banHammer = pcall(function()
- return InsertService:LoadAsset(banHammerID)
- end)
- if success and banHammer then
- local tool = banHammer:FindFirstChildWhichIsA("Tool")
- if tool then
- tool.Parent = LocalPlayer.Backpack
- -- Notify
- pcall(function()
- game.StarterGui:SetCore("SendNotification", {
- Title = "🔨 Ban Hammer Ready!",
- Text = "Check your inventory to equip it!",
- Duration = 4
- })
- end)
- else
- warn("Ban hammer tool not found in asset.")
- end
- else
- warn("Failed to load ban hammer. Gear might be restricted or InsertService is blocked in this game.")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement