Advertisement
Bdokkx

Untitled

Oct 12th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. -- Create tools and place them in the player's Backpack
  2. local player = game.Players.LocalPlayer
  3. local backpack = player.Backpack
  4.  
  5. -- Create the tools
  6. local tool1 = Instance.new("HopperBin")
  7. local tool2 = Instance.new("HopperBin")
  8. local tool3 = Instance.new("HopperBin")
  9.  
  10. -- Set the BinType properties (use actual tool names instead of outdated ones)
  11. tool1.BinType = Enum.BinType.Clone
  12. tool2.BinType = Enum.BinType.Hammer
  13. tool3.BinType = Enum.BinType.Grab
  14.  
  15. -- Parent the tools to the Backpack
  16. tool1.Parent = backpack
  17. tool2.Parent = backpack
  18. tool3.Parent = backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement