Untitled

 avatar
unknown
plain_text
5 months ago
365 B
4
Indexable
local model = script.Parent -- Zmienna odnosi się do modelu, w którym jest skrypt

local shirt = model:FindFirstChild("Shirt") -- Znajdź obiekt koszulki

if shirt then
    -- Ustaw ID tekstury koszulki (shirt template)
    shirt.ShirtTemplate = "rbxassetid://123456789" -- Zamień na ID koszulki
else
    print("Koszulka nie została znaleziona!")
end
Editor is loading...
Leave a Comment