Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Create tools and place them in the player's Backpack
- local player = game.Players.LocalPlayer
- local backpack = player.Backpack
- -- Create the tools
- local tool1 = Instance.new("HopperBin")
- local tool2 = Instance.new("HopperBin")
- local tool3 = Instance.new("HopperBin")
- -- Set the BinType properties (use actual tool names instead of outdated ones)
- tool1.BinType = Enum.BinType.Clone
- tool2.BinType = Enum.BinType.Hammer
- tool3.BinType = Enum.BinType.Grab
- -- Parent the tools to the Backpack
- tool1.Parent = backpack
- tool2.Parent = backpack
- tool3.Parent = backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement