0% found this document useful (0 votes)
124 views2 pages

(Vip) Auto Raid

The document contains Lua code for a Roblox script that creates a GUI window with toggle and button options. The toggle allows enabling/disabling an auto raid that sets enemies' health to 0. A button teleports the player to fix auto raid, destroys enemies, and teleports back. Another button prints credit to the script creators. Additional code creates a kill aura when a button is clicked by setting nearby enemies' health to a die variable.

Uploaded by

Alexis Guerrero
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
124 views2 pages

(Vip) Auto Raid

The document contains Lua code for a Roblox script that creates a GUI window with toggle and button options. The toggle allows enabling/disabling an auto raid that sets enemies' health to 0. A button teleports the player to fix auto raid, destroys enemies, and teleports back. Another button prints credit to the script creators. Additional code creates a kill aura when a button is clicked by setting nearby enemies' health to a die variable.

Uploaded by

Alexis Guerrero
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

local Library =

loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-
libs/main/lime"))()

local ok = Library:Window("Main")

ok:Toggle("Auto Raid",function(value)
getgenv().die = value
while getgenv().die do
for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
if v ~= nil then
v.Humanoid.Health = 0
end
end
wait(0)
end
end)

ok:Button("Fix Auto Raid",function()


game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
CFrame.new(Vector3.new(1609.84412, 143.373032, 2201.52686))
wait(2)
for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
if v ~= nil then
v:Destroy()
end
end
wait(1)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
CFrame.new(Vector3.new(-6681.94971, 29.5432396, -4879.76953))
end)

ok:Button("Print Credits", function()


print("Script By Asian")
print("UI By Devyonte")
print("bloodball")
end)

local ScreenGui = Instance.new("ScreenGui")


local Frame = Instance.new("Frame")
local _1 = Instance.new("TextButton")
die = 0

ScreenGui.Parent = game.CoreGui
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling

Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(0, 128, 0)
Frame.Position = UDim2.new(0.70900900923, 0, 0.019897461, 0)
Frame.Size = UDim2.new(0, 1, 0, 1)

_1.Name = "1"
_1.Parent = Frame
_1.BackgroundColor3 = Color3.fromRGB(128, 128, 128)
_1.Position = UDim2.new(0.0599999987, 0, 1.0847712383, 0)
_1.Size = UDim2.new(0, 150, 0, 60)
_1.Font = Enum.Font.SourceSans
_1.Text = "FIX MÁU ẢO"
_1.TextColor3 = Color3.fromRGB(255, 255, 255)
_1.TextSize = 19.000
_1.MouseButton1Down:connect(function()

_G.killaura = true

while _G.killaura do wait()


local dist = math.huge
local target = nil
for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
if v.ClassName == "Model" then
local magnitude = (v.HumanoidRootPart.Position -
game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
if magnitude < dist then
dist = magnitude
target = v.Name
v.Humanoid.Health = die
print(target)
end
end
end
end
end)

local LocalPlayer = game.Players.LocalPlayer


local rp = LocalPlayer.Character.HumanoidRootPart
local tool = Instance.new("Tool",LocalPlayer.Backpack)
local mouse = LocalPlayer:GetMouse()
tool.Name = "Dịch Chuyển"
tool.RequiresHandle = false
tool.Activated:Connect(function()
rp.CFrame = CFrame.new(mouse.Hit.X,mouse.Hit.Y + 4,mouse.Hit.Z)
end)

You might also like