[로블록스/Roblox] 캐릭터 점프 제어/Humanoid Jump Control
2021. 12. 14. 19:51ㆍGame/Roblox
반응형
■ 작업 내용
local allPlayers = game.Players:GetPlayers()
for _, player in pairs(allPlayers) do
if player.Character then
local humanoid = player.Character:FindFirstChild("Humanoid")
humanoid.UseJumpPower = true
humanoid.JumpPower = 100
end
end
■ Before
기본 캐릭터의 JumpPower는 default 50이다.
■ After
캐릭터의 JumpPower를 100으로 수정한 결과.
반응형
'Game > Roblox' 카테고리의 다른 글
[로블록스/Roblox] 파트 이동(Part Move) (1) | 2021.12.15 |
---|---|
[로블록스/Roblox] Roblox Game (4) | 2021.12.07 |
[로블록스/Roblox] 아이콘(icon), 썸네일(thumbnail) 변경 (0) | 2021.12.03 |