Port more corescripts and edit some

This commit is contained in:
Lewin Kelly 2023-04-21 23:53:33 +01:00
parent b285e7e168
commit 56c4943616
5 changed files with 3251 additions and 3 deletions

View File

@ -1556,7 +1556,7 @@ function RecreateScoreColumns(ptable)
MaxSizeColumn = 0 MaxSizeColumn = 0
-- for each entry in this player table -- for each entry in this player table
for i, entry in ipairs(ptable) do for _, entry in ipairs(ptable) do
local panel = entry["Frame"] local panel = entry["Frame"]
local tplayer = entry["Player"] local tplayer = entry["Player"]
-- if this panel does not have an element named after this stat -- if this panel does not have an element named after this stat

View File

@ -167,7 +167,7 @@ CreateTextButtons = function(frame, buttons, yPos, ySize)
if obj == button then if obj == button then
obj.Style = Enum.ButtonStyle.RobloxButtonDefault obj.Style = Enum.ButtonStyle.RobloxButtonDefault
else else
obj.Style = objEnum.ButtonStyle.RobloxButton obj.Style = Enum.ButtonStyle.RobloxButton
end end
end end
end end

View File

@ -213,7 +213,7 @@ CreateTextButtons = (frame, buttons, yPos, ySize) ->
obj.Style = if obj == button obj.Style = if obj == button
Enum.ButtonStyle.RobloxButtonDefault Enum.ButtonStyle.RobloxButtonDefault
else else
objEnum.ButtonStyle.RobloxButton Enum.ButtonStyle.RobloxButton
for _, obj in ipairs buttons for _, obj in ipairs buttons

1309
yue/48488235.lua Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff