У нас вы можете посмотреть бесплатно [로블록스 스튜디오] 툴 발판 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
밟으면 아이템 주는 버튼입니다. 모델: https://www.roblox.com/library/620920... 아이템 버튼 영상: • [로블록스 스튜디오] 클릭해서 먹어지는 아이템 스크립트 local jungbok = true -- 중복해서 먹는 게 싫으면 false 넣기 repeat wait() until script.tool.Value local tool = script.tool.Value if not tool:IsA("Tool") then warn("아이템 발판에 툴이 아닌 다른 게 들어왔습니다") end local jinyeol = script.Parent.Parent.ToolJinyeol function changeTransparency(num) for i, v in ipairs(jinyeol:GetDescendants())do if v:IsA("BasePart") then v.Transparency = num end end end local cooldown = true script.Parent.Touched:Connect(function(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player and cooldown then if not jungbok then if player.Backpack:FindFirstChild(tool.Name) or hit.Parent:FindFirstChild(tool.Name) then return end end cooldown = false changeTransparency(1) local OriginalColor = script.Parent.BrickColor script.Parent.BrickColor = BrickColor.new("Really black") tool:Clone().Parent = player.Backpack wait(1) script.Parent.BrickColor = OriginalColor cooldown = true changeTransparency(0) end end) 영상 다 끝내고서야 생각난 스크립트 더 좋은 버전 이 스크립트는 진열용 모델에 투명한 파트 있어도 됨 local jungbok = true -- 중복해서 먹는 게 싫으면 false 넣기 repeat wait() until script.tool.Value local tool = script.tool.Value if not tool:IsA("Tool") then warn("아이템 발판에 툴이 아닌 다른 게 들어왔습니다") end local jinyeol = script.Parent.Parent.ToolJinyeol local cooldown = true script.Parent.Touched:Connect(function(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player and cooldown then if not jungbok then if player.Backpack:FindFirstChild(tool.Name) or hit.Parent:FindFirstChild(tool.Name) then return end end cooldown = false jinyeol.Parent = nil -- 잠시 아무도 못찾는 곳으로 보냄 local OriginalColor = script.Parent.BrickColor script.Parent.BrickColor = BrickColor.new("Really black") tool:Clone().Parent = player.Backpack wait(1) script.Parent.BrickColor = OriginalColor cooldown = true jinyeol.Parent = script.Parent.Parent -- 다시 원래 위치로 복귀 end end) 시간표 00:00 테스트 00:19 모델 받기 00:36 모델 구성 00:46 아이템 진열 01:20 진열 주의사항 01:43 중복으로 먹기 방지 02:05 중복 주의사항 02:25 툴 설정해주기 02:55 발판 쿨타임 03:08 진열 주의사항 2 03:35 스크립트 에러 보는법 03:52 스크립트 해설