Advertisement
lolzc4

print test 2

Jun 9th, 2025 (edited)
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.96 KB | None | 0 0
  1. local RunService = game:GetService("RunService")
  2. local UserInputService = game:GetService("UserInputService")
  3.  
  4. print("test")
  5.  
  6. local library = require(game:HttpGet("https://pastebin.com/raw/6jzxx9bK"))()
  7.  
  8. local Menu = library.new("Blues hub - v2")
  9. local Main = Menu:CreateSection("Main")
  10.  
  11. local states = {
  12.     ESP = false;
  13.     DisplayNames = false;
  14.     ShowHealth = false;
  15.     AimbotEnabled = false;
  16.     AimbotKey = Enum.KeyCode.Unknown;
  17. }
  18.  
  19. local Tracking = false
  20.  
  21. function GetPlayer()
  22.     return false
  23. end
  24.  
  25. Main:CreateTextLabel("ESP")
  26.  
  27. Main:CreateToggle("ESP", function(enabled)
  28.     states.ESP = enabled
  29. end)
  30.  
  31. Main:CreateToggle("Use display names", function(enabled)
  32.     states.DisplayNames = enabled
  33. end)
  34.  
  35. Main:CreateToggle("Show health", function(enabled)
  36.     states.ShowHealth = enabled
  37. end)
  38.  
  39. Main:CreateInput("ESP toggle key", Enum.KeyCode.Unknown, function()
  40.     states.ESP = not states.ESP
  41. end)
  42.  
  43. Main:CreateInput("Test esp", Enum.KeyCode.F, print)
  44.  
  45. Main:CreateSlider("R Value", 255, function(Value)
  46.     print("R value changed to", Value)
  47. end)
  48.  
  49. Main:CreateTextLabel("Aimbot")
  50.  
  51. Main:CreateToggle("Aimbot enabled", function(enabled)
  52.     states.AimbotEnabled = enabled
  53. end)
  54.  
  55. Main:CreateSlider("Strength", 100, print)
  56.  
  57. Main:CreateTextBox("String", "Print", print)
  58.  
  59. Main:CreateInput("Aimbot hold key", Enum.KeyCode.LeftControl, function(key)
  60.     print(key)
  61. end)
  62.  
  63. UserInputService.InputBegan:Connect(function(input)
  64.     if input.KeyCode == states.AimbotKey and states.AimbotEnabled then
  65.         Tracking = true
  66.     else
  67.         Tracking = false
  68.     end
  69. end)
  70.  
  71. RunService.RenderStepped:Connect(function()
  72.     if Tracking then
  73.         local Target = GetPlayer()
  74.         local Aim = Target.Character:FindFirstChild("Head")
  75.         if Aim ~= nil then
  76.             workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, Aim.CFrame.Position)
  77.         end
  78.     end
  79. end)
  80.  
  81. local Test = Menu:CreateSection("Test")
  82.  
  83. Test:CreateTextLabel("this is just a test")
  84. Test:CreateTextLabel("i want to make sure it works")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement