local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() -- Folder where skins are located in ReplicatedStorage local skinsFolder = ReplicatedStorage:WaitForChild("BearSkins") -- Assumed folder name in ReplicatedStorage -- Ensure the skins folder exists if skinsFolder then -- Loop through all skins inside the "BearSkins" folder for _, skin in pairs(skinsFolder:GetChildren()) do -- Check if the item is an Image or asset (for simulation purposes) if skin:IsA("ImageLabel") or skin:IsA("Model") then -- Simulate giving the skin to the player (In this case, we'll just show the skin as a billboard) local billboardGui = Instance.new("BillboardGui") billboardGui.Parent = character.HumanoidRootPart billboardGui.Adornee = character.HumanoidRootPart billboardGui.Size = UDim2.new(7, 0, 7, 0) -- Adjust size of the billboard billboardGui.AlwaysOnTop = true -- Keeps the BillboardGui above the player local imageLabel = Instance.new("ImageLabel") imageLabel.Parent = billboardGui imageLabel.Size = UDim2.new(1, 0, 1, 0) -- Same size as the BillboardGui imageLabel.BackgroundTransparency = 1 -- If the skin is an ImageLabel (just an image) or a Model (we'll simulate with an image) if skin:IsA("ImageLabel") then imageLabel.Image = skin.Image -- Set the image of the skin else -- For models, we'll just simulate by showing a placeholder image imageLabel.Image = "rbxassetid://1234567890" -- Replace with an actual placeholder or skin image end imageLabel.Name = skin.Name -- Name the ImageLabel to match the skin's name imageLabel.Text = skin.Name -- Display the name of the skin imageLabel.TextColor3 = Color3.fromRGB(255, 255, 255) imageLabel.TextSize = 14 imageLabel.TextPosition = Enum.TextPosition.Bottom end end -- Print message indicating that the skins have been given to the player local message = Instance.new("TextLabel") message.Parent = player.PlayerGui message.Size = UDim2.new(0.5, 0, 0.1, 0) message.Position = UDim2.new(0.25, 0, 0.1, 0) message.Text = "Congratulations! All Bear Alpha skins have been unlocked and given to you!" message.TextColor3 = Color3.fromRGB(255, 255, 255) message.BackgroundTransparency = 0.5 message.BackgroundColor3 = Color3.fromRGB(0, 0, 0) message.TextSize = 24 else warn("No BearSkins folder found in ReplicatedStorage.") end