Advertisement
Guest User

Best No Scope Arcade Script v2

a guest
Jul 9th, 2024
19,943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("No-Scope Arcade v2", "BloodTheme")
  3. local Tab = Window:NewTab("Main")
  4. local Section = Tab:NewSection("Main")
  5.  
  6. Section:NewButton("Hitbox", "Shoot Through Walls", function()
  7. _G.HeadSize = 120
  8. _G.Disabled = true
  9.  
  10. game:GetService('RunService').RenderStepped:connect(function()
  11. if _G.Disabled then
  12. for i,v in next, game:GetService('Players'):GetPlayers() do
  13. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  14. pcall(function()
  15. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  16. v.Character.HumanoidRootPart.Transparency = 0.7
  17. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  18. v.Character.HumanoidRootPart.Material = "Neon"
  19. v.Character.HumanoidRootPart.CanCollide = false
  20. end)
  21. end
  22. end
  23. end
  24. end)
  25. end)
  26.  
  27. Section:NewButton("Esp", "WallHacks", function()
  28. --This script is for those games that won't let you use a GUI
  29. --Once executing, the ESP is instant.
  30.  
  31.  
  32. -- Function to update player ESP distance
  33. local function updatePlayerESP()
  34. local localCharacter = game.Players.LocalPlayer.Character
  35. if not localCharacter then
  36. return
  37. end
  38.  
  39. for _, player in ipairs(game.Players:GetPlayers()) do
  40. if player ~= game.Players.LocalPlayer and player.Character and player.Character:FindFirstChild("Head") then
  41. local distance = (localCharacter.Head.Position - player.Character.Head.Position).Magnitude
  42. local billboardGui = player.Character.Head:FindFirstChild("TadachiisESPTags") -- Check if the BillboardGui exists
  43. if not billboardGui then -- Only create a new one if it doesn't exist
  44. billboardGui = Instance.new("BillboardGui")
  45. billboardGui.Name = "TadachiisESPTags" -- Use the correct name for the BillboardGui
  46. billboardGui.Adornee = player.Character.Head
  47. billboardGui.Size = UDim2.new(0, 100, 0, 50) -- fixed size for the BillboardGui
  48. billboardGui.StudsOffset = Vector3.new(0, 2, 0) -- adjust the vertical offset as needed
  49. billboardGui.AlwaysOnTop = true
  50. billboardGui.LightInfluence = 1
  51. billboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  52. billboardGui.Parent = player.Character.Head
  53.  
  54. local textLabel = Instance.new("TextLabel")
  55. textLabel.Name = "NameLabel" -- Use the correct name for the label
  56. textLabel.Text = player.Name .. "\nDistance: " .. math.floor(distance)
  57. textLabel.Size = UDim2.new(1, 0, 1, 0)
  58. textLabel.BackgroundTransparency = 1 -- transparent background
  59. textLabel.TextColor3 = Color3.new(1, 0, 0) -- red text for the player's name
  60. textLabel.TextScaled = true
  61. textLabel.TextStrokeColor3 = Color3.new(0, 0, 0) -- black text stroke
  62. textLabel.TextStrokeTransparency = 0 -- fully opaque text stroke (visible through walls)
  63. textLabel.Visible = true -- ESP is always visible without a GUI
  64. textLabel.Parent = billboardGui
  65. else
  66. billboardGui.NameLabel.Text = player.Name .. "\nDistance: " .. math.floor(distance) -- Update the distance text
  67. end
  68. end
  69. end
  70. end
  71.  
  72. -- Call updatePlayerESP() initially and then schedule it to be called every 0.01 seconds
  73. updatePlayerESP()
  74. game:GetService("RunService").Heartbeat:Connect(function()
  75. updatePlayerESP()
  76. end)
  77. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement