diff --git a/yue/45284430.yue b/yue/45284430.yue index 6fa51c2..ab98508 100644 --- a/yue/45284430.yue +++ b/yue/45284430.yue @@ -2107,10 +2107,10 @@ CreateBasicTutorialPage = (name, handleResize, skipTutorial, giveDoneButton) -> Position: UDim2.new 0, 0, 0, 25 Parent: frame - innerFrame.Size = UDim2.new 1, 0, 1, if giveDoneButton - -75 + innerFrame.Size = if giveDoneButton + UDim2.new 1, 0, 1, -75 else - -22 + UDim2.new 1, 0, 1, -22 local parentConnection @@ -3179,10 +3179,15 @@ t.CreateTerrainMaterialSelector = (size, position) -> matName = getNameFromEnum newMaterialType buttons = scrollFrame\GetChildren! for i = 1, #buttons - if (buttons[i].Name == "Plastic (blue)" and matName == "Plastic (blue)") or - (buttons[i].Name == "Plastic (red)" and matName == "Plastic (red)") or - string.find buttons[i].Name, matName + if buttons[i].Name == "Plastic (blue)" and matName == "Plastic (blue)" + goToNewMaterial buttons[i], matName + return + if buttons[i].Name == "Plastic (red)" and matName == "Plastic (red)" + goToNewMaterial buttons[i], matName + return + + if string.find buttons[i].Name, matName goToNewMaterial buttons[i], matName return diff --git a/yue/48488235.yue b/yue/48488235.yue index 5022aec..ee52910 100644 --- a/yue/48488235.yue +++ b/yue/48488235.yue @@ -2262,11 +2262,6 @@ RemovePlayerFromTeam = (teamEntry, index) -> @Args entry Player entry --]] - -test = 5 - -test = 5 - FindRemovePlayerFromTeam = (entry) -> if entry["MyTeam"] for j, oldEntry in ipairs entry["MyTeam"]["MyPlayers"]