Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local players = game.Players;
- local replicatedStorage = game:GetService('ReplicatedStorage');
- local player = players.LocalPlayer;
- local playerGui = player.PlayerGui;
- local menu = playerGui:WaitForChild('ScreenGui');
- local chatRemote = replicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest;
- wait(3);
- local leaderboard = menu['lb1']:GetChildren();
- if #leaderboard >= 1 then
- local amount = math.clamp(#leaderboard, 1, 10);
- for i=1, amount do
- local lbPlayer = leaderboard[i];
- chatRemote:FireServer(string.format('!joinserver %s', lbPlayer.Name), 'all');
- end
- end
- local leaderstats = player:WaitForChild('leaderstats');
- local rankValue = leaderstats:WaitForChild('1v1 Rank');
- local myPoints = rankValue.Value;
- local found;
- for i, v in next, players:GetPlayers() do
- if v ~= player then
- if not v:FindFirstChild('leaderstats') then continue end;
- local rankPoints = v.leaderstats['1v1 Rank'].Value
- if math.abs(myPoints - rankPoints) <= 15 and v.Team == '1v1s' then
- found = true;
- end
- end
- end
- if found then
- local sound = Instance.new('Sound', menu);
- sound.SoundId = 'rbxassetid://7265006559';
- sound.Volume = 4;
- sound:Play();
- local placeRemote = replicatedStorage:WaitForChild('Place');
- placeRemote:FireServer(true); -- Queue for 1s
- else
- syn.queue_on_teleport("loadstring(game:HttpGet('https://pastebin.com/raw/PbZhtddy', true))()")
- loadstring(game:HttpGet('https://ic3w0lf.xyz/rblx/OWw9sYMYbyHr6GvPI87UvORyPr2U274X.lua', true))();
- end
Add Comment
Please, Sign In to add comment