[맵만들기] 한국인이라면 좋아할 쉽고, 빠르고, 간단하게 로블록스 타워 만드는 법 총정리!! {점프맵편}❤️ /로블록스 점프맵/로블 스튜디오/뚜비

뚜비
뚜비
171.9 هزار بار بازدید - 2 سال پیش - 타임라인&많이 물어보신 질문들💛제작자 동상 만드는
타임라인&많이 물어보신 질문들💛

제작자 동상 만드는 법 0:16
글자쓰는 법 0:38
피 닳는 파트 만드는 법 1:08
힐파트 만드는 법 1:44
사다리 만드는 법 2:21
다양한 모양의 블럭 만드는 법 2:48
회오리 만드는 법 3:07
엘리베이터/붕붕이 파트 만드는 법 3:40
두두두두 파트(?) 만드는 법 4:32
속임수 길 파트 만드는 법 4:53
위로회오리/아팔트먼트 만드는 법 5:10
타워 밖으로 나가는(?) 파트 만드는 법 5:27
중간 체크포인트 만드는 법 6:26

Q. 벽이 안늘려져요
A. 모델로 가서 창 왼쪽 위 스케일 누르기

Q. 휴대폰으론 못만드나요?
A. 넵 맵은 PC로만 만들 수 있어요

Q. 탐색기/속성/도구상자가 안떠요
A. 보기로 가서 탐색기/속성/도구상자 누르면 생겨요



킬파트 스크립트⤵️

local Debounce = false

script.Parent.Touched:connect(function(hit)
  if hit.Parent:FindFirstChild("Humanoid")and Debounce == false then
     Debounce = true
     hit.Parent.Humanoid:TakeDamage(10)
     wait(0)
     Debounce = false
  end
end)

힐파트 스크립트⤵️

local function onTouch(part)
  local humanoid = part.Parent:FindFirstChild("Humanoid")
  if (humanoid) then
     humanoid.Health = 100
  end
end

script.Parent.Touched:connect(onTouch)

붕붕이 스크립트⤵️

local players = not script.Parent:FindFirstChild("IgnorePlayers")
local yellot = not script.Parent:FindFirstChild("IgnoreBoxes")
local speed = script.Parent:FindFirstChild("Speed") and script.Parent.Speed.Value or 50

script.Parent.Touched:Connect(function(part)
  local torso = part.Parent:FindFirstChild("Torso") or part
  if not torso:FindFirstChild("ElevatorVelocity") and (part.Parent:FindFirstChild("Humanoid") and players) or (part.Name == "PushBox" and yellot) and not (script.Parent:FindFirstChild("Activated") and not script.Parent.Activated.Value) then
     local velocity = Instance.new("BodyVelocity", torso)
     velocity.Name = "ElevatorVelocity"
     local uv=script.Parent.CFrame.UpVector
     local maxf=Vector3.new(0,math.huge,0)
     print(uv)
     if uv.X ~= 0 then maxf = Vector3.new(math.huge, maxf.Y, maxf.Z) end
     if uv.Z ~= 0 then maxf = Vector3.new(maxf.X, maxf.Y, math.huge) end

     velocity.MaxForce = maxf
     velocity.Velocity = script.Parent.CFrame.UpVector*speed
  end
end)

script.Parent.TouchEnded:Connect(function(part)
  local torso = part.Parent:FindFirstChild("Torso") or part
  if torso:FindFirstChild("ElevatorVelocity") and (part.Parent:FindFirstChild("Humanoid") and players) or (part.Name == "PushBox" and yellot) then torso.ElevatorVelocity:Destroy() end
end)

🎵Music provided by 브금대통령
🎵Track : 봄에 듣기 좋은 BGM 2 - [브금대통령] 봄에 듣기 좋은 BGM 2/Music for Spri...

스크립트 출처- 옐롯님
2 سال پیش در تاریخ 1401/11/05 منتشر شده است.
171,904 بـار بازدید شده
... بیشتر