Shirt

사용되지 않는 항목 표시

*이 콘텐츠는 AI(베타)를 사용해 번역되었으며, 오류가 있을 수 있습니다. 이 페이지를 영어로 보려면 여기를 클릭하세요.

Shirt 개체는 Roblox의 �����

셔츠는 아바타가 착용되어 있는 경우 Player 캐릭터에서 자동으로 로드됩니다.

코드 샘플

Change Shirt / Pants

local Players = game:GetService("Players")
local function replaceClothes(player)
local character = player.Character
if character then
-- look for shirts / pants
local shirt = character:FindFirstChildOfClass("Shirt")
local pants = character:FindFirstChildOfClass("Pants")
-- create shirts / pants if they don't exist
if not shirt then
shirt = Instance.new("Shirt")
shirt.Parent = character
end
if not pants then
pants = Instance.new("Pants")
pants.Parent = character
end
-- reset shirt / pants content ids
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=83326831"
pants.PantsTemplate = "http://www.roblox.com/asset/?id=10045638"
end
end
for _index, player in ipairs(Players:GetPlayers()) do
replaceClothes(player)
end

요약

속성

  • ShirtTemplate:ContentId
    병렬 읽기

    Class.Shirt의 텍스트 결정.

속성Clothing에서 상속되었습니다
  • 병렬 읽기

    Class.Clothing 텍스처에 적용할 색상 지정을 결정합니다.

속성

ShirtTemplate

ContentId
병렬 읽기

Roblox에 호스팅된 셔츠 템플릿에 대한 콘텐츠 ID 링크입니다.

이 콘텐츠 ID는 셔츠의 웹 사이트 URL과 다릅니다. 셔츠의 웹 사이트 URL을 Studio의 셔츠 템플릿 속성에 붙여넣으면 찾을 수 있습니다. 또는 InsertService:LoadAsset()를 사용하여 셔츠를 작업 공간에 삽입할 수 있습니다.


local webURL = "https://www.roblox.com/catalog/1804747/White-Shirt"
local assetId = tonumber(string.match(webURL, "%d+") or 0) -- Extract the number
local success, model = pcall(function()
return game:GetService("InsertService"):LoadAsset(assetId)
end)
if success then
model.Parent = workspace
end

T-셔츠에 적용된 이미지에 대해서는 ShirtGraphic.Graphic 을 참조하십시오.

코드 샘플

Change Shirt / Pants

local Players = game:GetService("Players")
local function replaceClothes(player)
local character = player.Character
if character then
-- look for shirts / pants
local shirt = character:FindFirstChildOfClass("Shirt")
local pants = character:FindFirstChildOfClass("Pants")
-- create shirts / pants if they don't exist
if not shirt then
shirt = Instance.new("Shirt")
shirt.Parent = character
end
if not pants then
pants = Instance.new("Pants")
pants.Parent = character
end
-- reset shirt / pants content ids
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=83326831"
pants.PantsTemplate = "http://www.roblox.com/asset/?id=10045638"
end
end
for _index, player in ipairs(Players:GetPlayers()) do
replaceClothes(player)
end

메서드

이벤트