text 2
text 2
-- 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
-- Title Label
local Title = Instance.new("TextLabel")
Title.Parent = MainFrame
Title.Size = UDim2.new(1, -10, 0, 50) -- Increased height for title
Title.Position = UDim2.new(0, 5, 0, 5)
Title.BackgroundTransparency = 1
Title.Text = "BloodWare V6 | Strucid Script"
Title.Font = Enum.Font.GothamBold
Title.TextSize = 24
Title.TextColor3 = Color3.fromRGB(255, 0, 0)
Title.TextStrokeTransparency = 0.7
Title.TextStrokeColor3 = Color3.fromRGB(0, 255, 255)
Title.TextGradient = TweenService:Create(Title, TweenInfo.new(1), {TextColor3 =
Color3.fromRGB(255, 0, 0)})
-- 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
-- Hide/Show GUI
hideGUIButton.MouseButton1Click:Connect(function()
MainFrame.Visible = false
showMessage("GUI Hidden", "👀")
end)
hideGUIButton.MouseButton1Click:Connect(function()
MainFrame.Visible = false
openButton.Visible = true
end)
openButton.MouseButton1Click:Connect(function()
MainFrame.Visible = true
openButton.Visible = false
end)