Advertisement
noober662

Untitled

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