Roblox 5

[Roblox] Script로 Shirts Pants 변경하기

글을 쓰는 목적 Shirt, Pants 조작하기를 기록한다. 작업 환경 Roblox : 0.605 옷 변경 1. 홈 - 도구 상자 - 마켓플레이스 - 이미지 검색 얻고 싶은 asset id 얻어오거나 이미지 추가하여 asset id 추가 2. Character에 AssetId를 담을 StringValue 추가(AssetId는 "rbxassetid://1234" 형식으로 추가) 3. Character Script 추가 4. Character에 FindFirstChild로 Shirt와 Pants 컴포넌트를 찾은 후 Template를 변경하여 설정 local ownerPart = script.Parent local shirtId = ownerPart:FindFirstChild("ShirtIdString").V..

Roblox 2024.01.01

[Roblox] Script로 Humanoid 조작하기

글을 쓰는 목적 Humanoid 조작 작업 환경 로블록스 : 0.605 Humanoid 얻어오기 1. Humanoid를 조작하기 위해 패드 생성 2. 파츠에 Script 추가 3. 파츠에 GUI 추가 https://tigerfish.tistory.com/322 [Roblox] Part에 UI 추가하기 글을 쓰는 목적 Part에 UI 추가하는 방법을 기록한다. 작업 환경 Roblox : 0.605 1. Part 에 SurfaceGui 컴포넌트 추가 2. SurfaceGui에 Face에 원하는 위치에 표시하도록 설정 3. 추가하고 싶은 GUI Component를 추가 tigerfish.tistory.com 4. FindFistChildOfClass에서 Humanoid를 얻어 오기 local ownerPart..

Roblox 2024.01.01

[Roblox] Script로 파츠 조작하기

글을 쓰는 목적 파츠를 조작하는 방법을 기록한다. 작업 환경 0.605 1. 파츠에 스크립트 추가 2. Script.Parent를 통해서 파츠 얻어온 후 파츠 얻어온 후 Parameter 조작 -- 파츠 얻어오기 -- local partOwner = script.Parent -- 블록 컬로를 빨강으로 변경 -- partOwner.BrickColor = BrickColor.Red() print("Change BrickColor Red") --[[ 3초 뒤 컬러를 노랑색으로 변경 이 주석은 여러 줄을 사용하기 위해 사용 ]]-- task.wait(3) -- 블록 컬러를 파랑색으로 변경 -- partOwner.Color = Color3.fromRGB(0, 0, 255) print("Change Color bl..

Roblox 2023.12.31