RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a 3d image of the players tools in the players backpack"
-- ScripterAI can only help with scripting as of now, so here's a script to display the player's tools in a GUI -- LocalScript in StarterGui local player = game.Players.LocalPlayer local backpack = player:WaitForChild("Backpack") local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui local function updateTools() for i, tool in ipairs(backpack:GetChildren()) do if tool:IsA("Tool") then local toolGui = Instance.new("TextLabel") toolGui.Parent = screenGui toolGui.Position = UDim2.new(0, 10, 0, 30 * i) toolGui.Size = UDim2.new(0, 100, 0, 20) toolGui.Text = tool.Name toolGui.BackgroundTransparency = 1 toolGui.TextColor3 = Color3.new(1, 1, 1) toolGui.Font = Enum.Font.SourceSans toolGui.TextScaled = true end end end backpack.ChildAdded:Connect(updateTools) backpack.ChildRemoved:Connect(updateTools) updateTools()