Ronopoly Script | PASSWORD VIEWER

[ad_1]

Created by FaultByte

Features:

  • PASSWORD VIEWER

this script shows you ronopoly passwords in parentheses next to a username
passwords are stored in a string value so this was easy lol
you could probably scrape these passwords in hopes of some idiot using their roblox one

local lobbyList = game:GetService('Players').LocalPlayer.PlayerGui.joinMatch.popUp.scrollFrame

for i,v in pairs(lobbyList:GetChildren()) do
   if v.Name == 'MatchItem' and v.MatchItem.lockIcon.Visible then
       v.MatchItem.ownerName.Text = v.MatchItem.ownerName.Text .. ' (' .. v.MatchItem.password.Value .. ')'
   end
end

lobbyList.ChildAdded:Connect(function(v)
   if v.Name == 'MatchItem' and v.MatchItem.lockIcon.Visible then
       v.MatchItem.ownerName.Text = v.MatchItem.ownerName.Text .. ' (' .. v.MatchItem.password.Value .. ')'
   end
end)

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

[ad_2]