local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() -- Find the right and left boots local rightBoot = character:WaitForChild("RightBoot") local leftBoot = character:WaitForChild("LeftBoot") -- Set the size of the right and left boots directly rightBoot.Size = Vector3.new(10, 2, 10) leftBoot.Size = Vector3.new(10, 2, 10) -- Set transparency for the right and left boots rightBoot.Transparency = 0.95 -- Adjust the value (0 for opaque, 1 for fully transparent) leftBoot.Transparency = 0.95 -- Adjust the value (0 for opaque, 1 for fully transparent)