블록스로 배우는 코딩 #3 - 일정시간 통과하는 벽 local model = script.Parent function touchEventt(part) local character = part.Parent local humanoid = character:FindFirstChild("Humanoid") local wall = game.Workspace.Wall.Center if humanoid ~= nil then model.Color = Color3.fromRGB(255, 0, 0) wall.Transparency = 0.8 wall.CanCollide = false wait(5) wall.Transparency = 0 wall.CanCollide = true end end model.Touched:Connect(touchEventt) 강릉바다의 블로그 S.. 2022. 10. 6. 로블록스로 배우는 코딩 #2 - Part 색상 바꾸기 강릉바다의 블로그 Since 2008. 1. https://gnbada.kr/ 2022. 10. 6. 로블록스로 배우는 코딩 #1 - Touched 이벤트 강릉바다의 블로그 Since 2008. 1. https://gnbada.kr/ 2022. 10. 6. 이전 1 ··· 8 9 10 11 다음