BEST VIP CLUB!
BEST VIP CLUB!
200% Bonus
Roblox는 플레이어들이 다양한 방식으로 창의력을 표현할 수 있도록 설계된 샌드박스 게임입니다. 플레이어들은 주로 자신의 캐릭터를 멋지고 스타일리시하게 꾸미는 것을 즐깁니다. 이는 Dress to Impress와 같은 다양한 게임에서 특히 필요하며, 개인적인 만족을 위해서도 중요합니다. 그러나 모든 플레이어가 자신의 캐릭터 스타일이나 의상을 직접 꾸미고 싶어하는 것은 아닙니다.
이 때문에, Outfit Copier라는 스크립트가 커뮤니티에서 인기를 끌고 있습니다. 이 스크립트를 사용하면 다른 사용자의 외모를 즉시 복제할 수 있습니다. 스타일리시한 외모를 유지하거나, 자신의 캐릭터에 대한 영감을 찾거나, 다양한 스타일을 실험해보고 싶다면 이 스크립트가 유용할 것입니다.
Roblox Outfit Copier라는 이름은 그 자체로 기능을 설명하며, 실제로 그 기능을 수행합니다. 다른 유사한 스크립트처럼, Outfit Copier 스크립트는 Roblox에서 다른 플레이어의 의상을 자동으로 복제하기 위해 실행하는 간단한 Lua 코드입니다. 즉, 멋진 액세서리, 얼굴, 셔츠, 바지 조합을 가진 플레이어를 보면, 스크립트가 그들의 캐릭터에서 정보를 가져와 당신의 캐릭터에 적용합니다.
이러한 행동은 특정 플레이어를 사칭하여 규칙을 위반하거나, 명예를 훼손하거나, 다른 조작을 위해 사용하는 경우가 아니라면 게임의 규칙을 위반하는 것이 아닙니다.
Roblox에서 다른 플레이어의 외모를 복사하는 가장 쉬운 방법 중 하나는 Google Chrome과 Firefox 브라우저 확장 프로그램인 Roblox Outfit Copier를 사용하는 것입니다. 사용 방법은 다음과 같습니다:
기본적으로, 복사 스크립트는 선택한 플레이어의 HumanoidDescription을 스캔합니다. 이 설명에는 캐릭터의 외모와 의상에 대한 모든 정보가 포함되어 있습니다: 셔츠, 바지, 얼굴, 모자, 액세서리, 몸 색상 등. 스크립트가 이 데이터를 얻으면, 당신의 캐릭터에 설명을 적용하여 즉시 외모를 변경합니다. 이렇게 해서 게임에서 다른 사람의 의상과 외모를 복사할 수 있습니다.
Roblox에서 Outfit Copier Script를 사용하는 단계별 가이드는 다음과 같습니다:
Hell Treet Roblox 그룹에 가입해야 합니다.
loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\73\110\118\111\111\107\101\114\49\49\47\79\117\116\102\105\116\47\109\97\105\110\47\79\117\116\102\105\116\67\111\112\105\101\114\46\108\117\97\34\44\32\116\114\117\101\41\41\40\41\10")()
Synapse X, Fluxus, KRN과 같은 실행 도구를 통해 실행할 수 있는 클래식 Lua 스크립트의 예를 살펴보겠습니다. 이 스크립트는 복사하고 싶은 플레이어의 사용자 이름을 입력할 수 있게 해줍니다:
local targetName = "TargetPlayerNameHere"
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local TargetPlayer = Players:FindFirstChild(targetName)
if not TargetPlayer then
warn("Player not found!")
return
end
local function cloneOutfit()
local humanoidDescription = TargetPlayer.Character:FindFirstChildOfClass("Humanoid"):GetAppliedDescription()
LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ApplyDescription(humanoidDescription)
print("Clothing successfully copied!")
end
cloneOutfit()
일부 Roblox outfit copier 스크립트는 사용자 이름을 입력하기 쉽게 하기 위해 간단한 그래픽 인터페이스를 제공합니다. 입력 창이 있는 더 발전된 버전을 소개합니다:
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextBox = Instance.new("TextBox")
local Button = Instance.new("TextButton")
ScreenGui.Parent = game:GetService("CoreGui")
Frame.Size = UDim2.new(0, 200, 0, 100)
Frame.Position = UDim2.new(0.5, -100, 0.5, -50)
Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
Frame.Parent = ScreenGui
TextBox.PlaceholderText = "Enter username"
TextBox.Size = UDim2.new(1, -20, 0, 30)
TextBox.Position = UDim2.new(0, 10, 0, 10)
TextBox.Parent = Frame
Button.Text = "Copy Clothing"
Button.Size = UDim2.new(1, -20, 0, 30)
Button.Position = UDim2.new(0, 10, 0, 50)
Button.Parent = Frame
Button.MouseButton1Click:Connect(function()
local targetName = TextBox.Text
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local TargetPlayer = Players:FindFirstChild(targetName)
if not TargetPlayer then
warn("Player not found!")
return
end
local humanoidDescription = TargetPlayer.Character:FindFirstChildOfClass("Humanoid"):GetAppliedDescription()
LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ApplyDescription(humanoidDescription)
end)
댓글1