Advertisement
rrixh

krone lxxked

Sep 9th, 2023 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 17.15 KB | None | 0 0
  1. -- KRONE LEAKEd
  2. local function delayAndTeleport()
  3.     local function teleport()
  4.         local success, err =
  5.             pcall(
  6.             function()
  7.                 game:GetService("TeleportService"):Teleport(game.PlaceId)
  8.             end
  9.         )
  10.  
  11.         if not success then
  12.             -- Send error to Diskord Webhook
  13.             --  local DiscordWebhookURL = "webhook trunated for privaxy" -- webhook has been seized by GNAA agents
  14.             local DiscordWebhookURL = ""
  15.             local data = {
  16.                 content = "Error occured while teleporting: " .. tostring(err)
  17.             }
  18.             local headers = {
  19.                 ["Content-Type"] = "application/json"
  20.             }
  21.             local success, response =
  22.                 pcall(
  23.                 function()
  24.                     local httpService = game:GetService("HttpService")
  25.                     local requestInfo = {
  26.                         Url = DiscordWebhookURL,
  27.                         Method = "POST",
  28.                         Headers = headers,
  29.                         Body = httpService:JSONEncode(data)
  30.                     }
  31.                     httpService:RequestAsync(requestInfo)
  32.                 end
  33.             )
  34.             if not success then
  35.                 warn("Failed to send error to Diskord Webhook: " .. tostring(response))
  36.             end
  37.         end
  38.     end
  39.  
  40.     -- Delay before teleporting
  41.     local delayTime = 118 -- adjust the delay time (in sekonds) as needed
  42.     wait(delayTime)
  43.  
  44.     -- kall the teleport funktion
  45.     teleport()
  46. end
  47.  
  48. coroutine.wrap(delayAndTeleport)()
  49.  
  50. BlacklistedPlayers, WhitelistedPlayers, ModsTable, kroneTable, BLSV, WLSV, MDSV, KRONE =
  51.     {},
  52.     {},
  53.     {},
  54.     {},
  55.     false,
  56.     false,
  57.     false,
  58.     false
  59. Settings = {ServerHops = 1, Distance = 18, Globals = {"Executions", "List"}}
  60. Blacklist, kroneUserids = {}, {4710732523, 354902977}
  61.  
  62. if (type(getgenv()[Settings["Globals"][1]]) == "number" and getgenv()[Settings["Globals"][1]] > 0) then
  63.     getgenv()[Settings["Globals"][1]] = getgenv()[Settings["Globals"][1]] + 1
  64. end
  65. if (not getgenv()[Settings["Globals"][2]]) then
  66.     getgenv()[Settings["Globals"][1]] = 1
  67.     getgenv()[Settings["Globals"][2]] = {}
  68. end
  69. if
  70.     (type(getgenv()[Settings["Globals"][1]]) == "number" and
  71.         getgenv()[Settings["Globals"][1]] >= tonumber(Settings["ServerHops"]))
  72.  then
  73.     getgenv()[Settings["Globals"][1]] = 1
  74.     getgenv()[Settings["Globals"][2]] = {}
  75. end
  76.  
  77. local function checkBlacklist(player)
  78.     if table.find(Blacklist, player.UserId) then
  79.       table.insert(BlacklistedPlayers, player)
  80.       game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Blaxklisted Player Detekted: " .. player.DisplayName, "All")
  81.       BLSV = true
  82.     end
  83.   end
  84.  
  85. local function checkKrone(player)
  86.     if table.find(kroneUserids, player.UserId) then
  87.       table.insert(kroneTable, player)
  88.       game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" lollypops | owner Detekted: " .. player.DisplayName, "All")
  89.       KRONE = true
  90.     end
  91.   end
  92. local function checkWhitelist(player)
  93. end
  94. local function checkAllPlayers()
  95.     for _, player in ipairs(game.Players:GetPlayers()) do
  96.       if player ~= LocalPlayer then
  97.         checkBlacklist(player)
  98.         checkKrone(player)
  99.         checkWhitelist(player)
  100.       end
  101.     end
  102.   end
  103.  
  104.   game.Players.PlayerAdded:Connect(function(player)
  105.     if player ~= LocalPlayer then
  106.       checkBlacklist(player)
  107.       checkKrone(player)
  108.       checkWhitelist(player)
  109.     end
  110.   end)
  111.  
  112.  
  113. checkAllPlayers()
  114.  
  115. coroutine.wrap(
  116.     function()
  117.         while true do
  118.             wait()
  119.             if #BlacklistedPlayers > 0 then
  120.                 for _, player in ipairs(game.Players:GetPlayers()) do
  121.                     if player ~= LocalPlayer and not table.find(BlacklistedPlayers, player) then
  122.                         player:Destroy()
  123.                         if player.Character then
  124.                             player.Character:Destroy()
  125.                             wait(0.1)
  126.                         end
  127.                     end
  128.                 end
  129.             end
  130.         end
  131.     end
  132. )()
  133. coroutine.wrap(
  134.     function()
  135.         while true do
  136.             wait()
  137.             if #WhitelistedPlayers > 0 then
  138.                 for _, player in ipairs(game.Players:GetPlayers()) do
  139.                     if player ~= LocalPlayer and table.find(WhitelistedPlayers, player) then
  140.                         player:Destroy()
  141.                         if player.Character then
  142.                             player.Character:Destroy()
  143.                             wait(0.1)
  144.                         end
  145.                     end
  146.                 end
  147.             end
  148.         end
  149.     end
  150. )()
  151. coroutine.wrap(
  152.     function()
  153.         while true do
  154.             wait()
  155.             if #kroneTable > 0 then
  156.                 for _, player in ipairs(game.Players:GetPlayers()) do
  157.                     if player ~= LocalPlayer and table.find(kroneTable, player) then
  158.                         player:Destroy()
  159.                         if player.Character then
  160.                             player.Character:Destroy()
  161.                             wait(0.1)
  162.                         end
  163.                     end
  164.                 end
  165.             end
  166.         end
  167.     end
  168. )()
  169.  
  170. game:GetService("Lighting").ClockTime = 0
  171.  
  172. local function ServerHop()
  173.     local success, response =
  174.         pcall(
  175.         function()
  176.             return game:GetService("HttpService"):JSONDecode(
  177.                 game:HttpGet(
  178.                     "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
  179.                 )
  180.             )
  181.         end
  182.     )
  183.  
  184.     if success and response and response.data then
  185.         local AvailableServers = response.data
  186.  
  187.         while true do
  188.             wait()
  189.             local RandomServer = AvailableServers[math.random(#AvailableServers)]
  190.             if
  191.                 RandomServer.playing < RandomServer.maxPlayers - 1 and RandomServer.playing > 12 and
  192.                     RandomServer.id ~= game.JobId
  193.              then
  194.                 game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, RandomServer.id)
  195.             end
  196.         end
  197.     else
  198.         warn("Failed to retrieve server list. Retrying...")
  199.         ServerHop()
  200.     end
  201. end
  202.  
  203. local function hop()
  204.     while true do
  205.         local success, errorMessage = pcall(ServerHop)
  206.         if not success then
  207.             warn("Server hop error: " .. errorMessage)
  208.         end
  209.         wait()
  210.     end
  211. end
  212.  
  213. local Players = game:GetService("Players")
  214. local LocalPlayer = Players.LocalPlayer
  215. local rservice = game:GetService("RunService")
  216.  
  217. animations = {
  218.     3333499508,
  219.     3695333486,
  220.     3333136415,
  221.     3338042785,
  222.     4940561610,
  223.     4940564896,
  224.     4841399916,
  225.     4641985101,
  226.     4555782893,
  227.     4265725525,
  228.     3338097973,
  229.     3333432454,
  230.     3333387824,
  231.     4406555273,
  232.     4212455378,
  233.     4049037604,
  234.     3695300085,
  235.     3695322025,
  236.     5915648917,
  237.     5915714366,
  238.     5918726674,
  239.     5917459365,
  240.     5915712534,
  241.     5915713518,
  242.     5937558680,
  243.     5918728267,
  244.     5937560570,
  245.     507776043,
  246.     507777268,
  247.     507771019
  248. }
  249.  
  250. local randomdance = animations[math.random(1, #animations)]
  251. local WaveAnim = Instance.new("Animation")
  252. WaveAnim.AnimationId = "rbxassetid://" .. tostring(randomdance)
  253. local wave
  254. PlayWaveAnim = function()
  255.     wave = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):LoadAnimation(WaveAnim)
  256.     wave:Play(1, 5, 1)
  257. end
  258. PlayWaveAnim()
  259.  
  260. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  261.     coroutine.wrap(
  262.         function()
  263.             while wait() do
  264.                 if game.Players.LocalPlayer.CharacterAdded then
  265.                     game.Players.LocalPlayer.CharacterAdded:wait()
  266.                     wait(1)
  267.                     PlayWaveAnim()
  268.                 end
  269.             end
  270.         end
  271.     )()
  272. end
  273.  
  274. local CF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  275. local numb = 0
  276.  
  277. local Nearby = function(TP, WP)
  278.     local WC, TC = WP["Character"] or nil, TP["Character"] or nil
  279.     if WC and TC then
  280.         local WPS, TPS = WC["PrimaryPart"]["Position"] or nil, TC["PrimaryPart"]["Position"] or nil
  281.         if WPS and TPS then
  282.             return ((WPS - TPS)["magnitude"] <= Settings["Distance"])
  283.         else
  284.             return false
  285.         end
  286.     end
  287.     return false
  288. end
  289.  
  290. local function shhhlol(TargetPlayer)
  291.     local Character = LocalPlayer.Character
  292.     local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  293.     local RootPart = Humanoid.RootPart
  294.  
  295.     local im = TargetPlayer.Character
  296.     local so
  297.     local sorry
  298.     local please
  299.     local stop
  300.     local it
  301.  
  302.     if im:FindFirstChildOfClass("Humanoid") then
  303.         so = im:FindFirstChildOfClass("Humanoid")
  304.     end
  305.     if so and so.RootPart then
  306.         sorry = so.RootPart
  307.     end
  308.     if im:FindFirstChild("Head") then
  309.         please = im.Head
  310.     end
  311.     if im:FindFirstChildOfClass("stop") then
  312.         stop = im:FindFirstChildOfClass("stop")
  313.     end
  314.     if Accessoy and stop:FindFirstChild("it") then
  315.         it = stop.it
  316.     end
  317.  
  318.     if Character and Humanoid and RootPart then
  319.         if please then
  320.             workspace.CurrentCamera.CameraSubject = please
  321.         elseif not please and it then
  322.             workspace.CurrentCamera.CameraSubject = it
  323.         else
  324.             workspace.CurrentCamera.CameraSubject = so
  325.         end
  326.         if not im:FindFirstChildWhichIsA("BasePart") then
  327.             return
  328.         end
  329.         local function mmmm(comkid, Pos, Ang)
  330.             RootPart.CFrame = CFrame.new(comkid.Position) * Pos * Ang
  331.             RootPart.RotVelocity = Vector3.new(9e8, 9e8, 9e8)
  332.         end
  333.         local function wtf(comkid)
  334.             local TimeToWait = 0.134
  335.             local Time = tick()
  336.             local Angle = 0
  337.  
  338.             Att1 = Instance.new("Attachment", RootPart)
  339.             Att2 = Instance.new("Attachment", sorry)
  340.  
  341.             repeat
  342.                 for _, v in next, WhitelistedPlayers do
  343.                     local WP = table.find(WhitelistedPlayers, tostring(v.UserId))
  344.                     if WP and Nearby(Player, WP) then
  345.                         return
  346.                     end
  347.                 end
  348.                 if RootPart and so then
  349.                     if comkid.Velocity.Magnitude < 30 then
  350.                         mmmm(
  351.                             comkid,
  352.                             CFrame.new(0, 1.5, 0) + so.MoveDirection * comkid.Velocity.Magnitude / 5,
  353.                             CFrame.Angles(
  354.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
  355.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
  356.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180)
  357.                             )
  358.                         )
  359.                         game:GetService("RunService").Heartbeat:wait()
  360.  
  361.                         mmmm(
  362.                             comkid,
  363.                             CFrame.new(0, 1.5, 0) + so.MoveDirection * comkid.Velocity.Magnitude / 1.25,
  364.                             CFrame.Angles(
  365.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
  366.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
  367.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180)
  368.                             )
  369.                         )
  370.                         game:GetService("RunService").Heartbeat:wait()
  371.  
  372.                         mmmm(
  373.                             comkid,
  374.                             CFrame.new(0, -1.5, 0) + so.MoveDirection * comkid.Velocity.Magnitude / 1.25,
  375.                             CFrame.Angles(
  376.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
  377.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
  378.                                 math.random(1, 2) == 1 and math.rad(0) or math.rad(180)
  379.                             )
  380.                         )
  381.                         game:GetService("RunService").Heartbeat:wait()
  382.                     else
  383.                         mmmm(comkid, CFrame.new(0, -1.5, 0), CFrame.Angles(math.rad(0), 0, 0))
  384.                         game:GetService("RunService").Heartbeat:wait()
  385.                     end
  386.                 else
  387.                     break
  388.                 end
  389.             until comkid.Velocity.Magnitude > 1000 or comkid.Parent ~= TargetPlayer.Character or
  390.                 TargetPlayer.Parent ~= Players or
  391.                 not TargetPlayer.Character == im or
  392.                 Humanoid.Health <= 0 or
  393.                 tick() > Time + TimeToWait
  394.             if game.PlaceId == 417267366 then
  395.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5524, 36, -17126.50)
  396.             else
  397.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CF
  398.             end
  399.         end
  400.         workspace.FallenPartsDestroyHeight = 0 / 0
  401.         local BV = Instance.new("BodyVelocity")
  402.         BV.Parent = RootPart
  403.         BV.Velocity = Vector3.new(-9e99, 9e99, -9e99)
  404.         BV.MaxForce = Vector3.new(-9e9, 9e9, -9e9)
  405.  
  406.         local BodyGyro = Instance.new("BodyGyro")
  407.         BodyGyro.CFrame = CFrame.new(LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position)
  408.         BodyGyro.D = 9e8
  409.         BodyGyro.MaxTorque = Vector3.new(-9e9, 9e9, -9e9)
  410.         BodyGyro.P = -9e9
  411.         local BodyPosition = Instance.new("BodyPosition")
  412.  
  413.         BodyPosition.Position = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position
  414.         BodyPosition.D = 9e8
  415.         BodyPosition.MaxForce = Vector3.new(-9e9, 9e9, -9e9)
  416.         BodyPosition.P = -9e9
  417.  
  418.         local LineForce = Instance.new("LineForce")
  419.         LineForce.Attachment0 = Att1
  420.         LineForce.Attachment1 = Att2
  421.         LineForce.ApplyAtCenterOfMass = true
  422.         LineForce.InverseSquareLaw = true
  423.         LineForce.Magnitude = 2e7
  424.         LineForce.MaxForce = 9e9
  425.  
  426.         if sorry and please then
  427.             if (sorry.CFrame.p - please.CFrame.p).Magnitude > 5 then
  428.                 wtf(please)
  429.             else
  430.                 wtf(sorry)
  431.             end
  432.         elseif sorry and not please then
  433.             wtf(sorry)
  434.         elseif not sorry and please then
  435.             wtf(please)
  436.         elseif not sorry and not please and stop and it then
  437.             wtf(it)
  438.         else
  439.         end
  440.         BV:Destroy()
  441.         BodyGyro:Destroy()
  442.         BodyPosition:Destroy()
  443.         LineForce:Destroy()
  444.         Att1:Destroy()
  445.         Att2:Destroy()
  446.         for _, x in next, Character:GetDescendants() do
  447.             if x:IsA("BasePart") then
  448.                 x.Velocity, x.RotVelocity = Vector3.new(), Vector3.new()
  449.             end
  450.         end
  451.         Humanoid:ChangeState("GettingUp")
  452.         workspace.CurrentCamera.CameraSubject = Humanoid
  453.     end
  454. end
  455.  
  456. rservice.Stepped:Connect(
  457.     function()
  458.         if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then
  459.             if LocalPlayer.Character:FindFirstChildOfClass("Humanoid").Sit == true then
  460.                 LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
  461.             end
  462.             for _, z in next, LocalPlayer.Character:GetChildren() do
  463.                 if z:IsA "BasePart" then
  464.                     z.CanCollide = false
  465.                 end
  466.             end
  467.         end
  468.     end
  469. )
  470. coroutine.resume(
  471.     coroutine.create(
  472.         function()
  473.             while wait() do
  474.                 pcall(
  475.                     function()
  476.                         for _, z in pairs(Players:GetPlayers()) do
  477.                             if z ~= LocalPlayer and not table.find(WhitelistedPlayers, tostring(z.UserId)) then
  478.                                 if
  479.                                     LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") and
  480.                                         z and
  481.                                         z.Character and
  482.                                         z.Character:FindFirstChildOfClass("Humanoid").Sit == false
  483.                                  then
  484.                                     shhhlol(z)
  485.                                     wait()
  486.                                 end
  487.                             end
  488.                         end
  489.                     end
  490.                 )
  491.             end
  492.         end
  493.     )
  494. )
  495. local function Chat(msg)
  496.     game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  497. end
  498.  
  499. task.spawn(
  500.     function()
  501.         while true do
  502.             wait(0.45)
  503.             Chat("trolled🍭")
  504.         end
  505.     end
  506. )
  507.  
  508. spawn(
  509.     function()
  510.         while true do
  511.             wait(0.5)
  512.             numb = numb + 1
  513.             if numb == 212 then
  514.                 game.Players.LocalPlayer:Kick("finding a server....")
  515.                 wait(0.5)
  516.                 pcall(hop)
  517.             end
  518.         end
  519.     end
  520. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement