Adam_Pastebin

Roblox Verified Icon Script

Sep 30th, 2023
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | Gaming | 0 0
  1. local PlayerList = game:GetService("CoreGui").PlayerList.PlayerListMaster.OffsetFrame.PlayerScrollList.SizeOffsetFrame.ScrollingFrameContainer.ScrollingFrameClippingFrame.ScollingFrame.OffsetUndoFrame
  2. local UserId = game:GetService("Players").LocalPlayer.UserId
  3.  
  4. while true do
  5.     if PlayerList then
  6.         local Player = PlayerList["p_".. UserId]
  7.        
  8.         if Player then
  9.             local PlayerIcon = Player.ChildrenFrame.NameFrame.BGFrame.OverlayFrame.PlayerIcon
  10.            
  11.             if PlayerIcon then
  12.                 PlayerIcon.Image = "http://www.roblox.com/asset/?id=11478378840"
  13.             end
  14.         end
  15.     end
  16.     task.wait()
  17. end
Add Comment
Please, Sign In to add comment