Advertisement
thatpastebinner

ROnopoly Password Viewer

Jan 26th, 2023
2,362
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local lobbyList = game:GetService('Players').LocalPlayer.PlayerGui.joinMatch.popUp.scrollFrame
  2.  
  3. for i,v in pairs(lobbyList:GetChildren()) do
  4.    if v.Name == 'MatchItem' and v.MatchItem.lockIcon.Visible then
  5.        v.MatchItem.ownerName.Text = v.MatchItem.ownerName.Text .. ' (' .. v.MatchItem.password.Value .. ')'
  6.    end
  7. end
  8.  
  9. lobbyList.ChildAdded:Connect(function(v)
  10.    if v.Name == 'MatchItem' and v.MatchItem.lockIcon.Visible then
  11.        v.MatchItem.ownerName.Text = v.MatchItem.ownerName.Text .. ' (' .. v.MatchItem.password.Value .. ')'
  12.    end
  13. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement