text 3
text 3
-- GUI Setup
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Parent = Player:WaitForChild("PlayerGui")
ScreenGui.Name = "BloodWareV6StrucidGUI"
ScreenGui.ResetOnSpawn = false
-- Main Frame
local MainFrame = Instance.new("Frame")
MainFrame.Parent = ScreenGui
MainFrame.Position = UDim2.new(0, 20, 0, 100)
MainFrame.Size = UDim2.new(0, 250, 0, 580) -- Increased height
MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
MainFrame.BorderSizePixel = 0
MainFrame.Visible = true
MainFrame.Active = true
MainFrame.Draggable = true
-- Button Creator
local function createButton(text, posY)
local Button = Instance.new("TextButton")
Button.Parent = MainFrame
Button.Size = UDim2.new(1, -20, 0, 40)
Button.Position = UDim2.new(0, 10, 0, posY)
Button.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
Button.Text = text
Button.Font = Enum.Font.Gotham
Button.TextSize = 16
Button.TextColor3 = Color3.fromRGB(255, 255, 255)
-- Hover Effect
Button.MouseEnter:Connect(function()
Button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
end)
Button.MouseLeave:Connect(function()
Button.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
end)
return Button
end
local hue2 = 0
RunService.RenderStepped:Connect(function()
hue2 = (hue2 + 0.01) % 1
if Label.Parent then
Label.TextColor3 = Color3.fromHSV(hue2, 1, 1)
end
end)
-- Buttons Setup
local buttonSpacing = 50
-- Fly GUI
local flyLoaded = false
flyButton.MouseButton1Click:Connect(function()
if not flyLoaded then
flyLoaded = true
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fly-
gui-universal-solutions-22936"))()
flyButton.Text = "Fly GUI Loaded"
showMessage("Fly Loaded ")
end
end)
-- Aimbot
local aimbotLoaded = false
aimbotButton.MouseButton1Click:Connect(function()
if not aimbotLoaded then
aimbotLoaded = true
loadstring(game:HttpGet("https://pastebin.com/raw/vgmeCmsY"))()
aimbotButton.Text = "Aimbot Loaded (Load in Lobby)"
showMessage("Aimbot Loaded 🎯")
end
end)
-- ESP
local espLoaded = false
espButton.MouseButton1Click:Connect(function()
if not espLoaded then
espLoaded = true
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-
Exunys-ESP-7126"))()
espButton.Text = "ESP Loaded"
showMessage("ESP Loaded ")
end
end)
-- Head Hitbox
local headHitboxEnabled = false
hitboxButton.MouseButton1Click:Connect(function()
headHitboxEnabled = not headHitboxEnabled
hitboxButton.Text = headHitboxEnabled and "Head Hitbox (ON)" or "Head Hitbox
(OFF)"
for _, target in pairs(Players:GetPlayers()) do
if target ~= Player then
local char = target.Character or target.CharacterAdded:Wait()
local head = char:FindFirstChild("Head")
if head then
head.Size = headHitboxEnabled and Vector3.new(12,12,12) or
Vector3.new(2,2,2)
end
end
end
end)
-- Destroy Builds
local destroyingBuilds = false
destroyBuildsButton.MouseButton1Click:Connect(function()
destroyingBuilds = not destroyingBuilds
destroyBuildsButton.Text = destroyingBuilds and "Destroying Builds (ON)" or
"Destroying Builds (OFF)"
if destroyingBuilds then
coroutine.wrap(function()
while destroyingBuilds do
for _, build in pairs(workspace.BuildStuff:GetDescendants()) do
build:Destroy()
end
wait(0.5)
end
end)()
end
end)
-- NoFall Gravity
local gravityNoFallEnabled = false
local originalGravity = game.Workspace.Gravity
local gravitySpeed = 196.2 -- Default gravity speed
if player.Character then
setupCharacter(player.Character)
end
player.CharacterAdded:Connect(setupCharacter)
end
noFallButton.MouseButton1Click:Connect(function()
gravityNoFallEnabled = not gravityNoFallEnabled
noFallButton.Text = gravityNoFallEnabled and "NoFall Gravity (ON)" or "NoFall
Gravity (OFF)"
if gravityNoFallEnabled then
autoFallGravity() -- Enable the auto gravity system
showMessage("NoFall Gravity ON 🌌")
else
disableZeroGravity() -- Reset gravity to normal when turning off NoFall
showMessage("NoFall Gravity OFF ⬇️")
end
end)
-- Hide/Show GUI
hideGUIButton.MouseButton1Click:Connect(function()
MainFrame.Visible = false
end)
local openButton = Instance.new("TextButton")
openButton.Parent = ScreenGui
openButton.Size = UDim2.new(0, 100, 0, 40)
openButton.Position = UDim2.new(0, 20, 0, 160)
openButton.Text = "Open GUI"
openButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
openButton.TextColor3 = Color3.fromRGB(255, 255, 255)
openButton.Font = Enum.Font.GothamBold
openButton.TextSize = 18
openButton.Visible = false
hideGUIButton.MouseButton1Click:Connect(function()
MainFrame.Visible = false
openButton.Visible = true
end)
openButton.MouseButton1Click:Connect(function()
MainFrame.Visible = true
openButton.Visible = false
end)