--[=[ 88888888888 888 888 8888888 8888888b. .d8888b. 88888888888 888 888 888 888 888 Y88b d88P Y88b 888 888 888 888 888 888 888 Y88b. 888 888 8888888888 888 888 d88P "Y888b. 888 888 888 888 888 8888888P" "Y88b. 888 888 888 888 888 888 T88b "888 888 888 888 888 888 888 T88b Y88b d88P 888 888 888 888 8888888 888 T88b "Y8888P" 888 ]=] local DiscordGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local GlowFrame = Instance.new("Frame") local GlowCorner = Instance.new("UICorner") local TopBar = Instance.new("Frame") local TopBarCorner = Instance.new("UICorner") local TopGlow = Instance.new("Frame") local Title = Instance.new("TextLabel") local Subtitle = Instance.new("TextLabel") local SamuraiIcon = Instance.new("TextLabel") local CloseButton = Instance.new("TextButton") local CloseCorner = Instance.new("UICorner") local ContentFrame = Instance.new("Frame") local MessageLabel = Instance.new("TextLabel") local Divider = Instance.new("Frame") local CopyButton = Instance.new("TextButton") local CopyCorner = Instance.new("UICorner") local ButtonGlow = Instance.new("Frame") local ButtonGlowCorner = Instance.new("UICorner") local Shadow1 = Instance.new("Frame") local Shadow2 = Instance.new("Frame") local Shadow1Corner = Instance.new("UICorner") local Shadow2Corner = Instance.new("UICorner") DiscordGui.Name = "SamuraiDiscordGui" DiscordGui.Parent = game:GetService("CoreGui") DiscordGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling DiscordGui.ResetOnSpawn = false Shadow2.Name = "Shadow2" Shadow2.Parent = DiscordGui Shadow2.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Shadow2.BackgroundTransparency = 0.5 Shadow2.Position = UDim2.new(0.5, -228, 0.5, -178) Shadow2.Size = UDim2.new(0, 456, 0, 356) Shadow2.ZIndex = 1 Shadow2Corner.CornerRadius = UDim.new(0, 20) Shadow2Corner.Parent = Shadow2 Shadow1.Name = "Shadow1" Shadow1.Parent = DiscordGui Shadow1.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Shadow1.BackgroundTransparency = 0.65 Shadow1.Position = UDim2.new(0.5, -223, 0.5, -173) Shadow1.Size = UDim2.new(0, 446, 0, 346) Shadow1.ZIndex = 1 Shadow1Corner.CornerRadius = UDim.new(0, 18) Shadow1Corner.Parent = Shadow1 GlowFrame.Name = "GlowFrame" GlowFrame.Parent = DiscordGui GlowFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) GlowFrame.BackgroundTransparency = 0.92 GlowFrame.Position = UDim2.new(0.5, -218, 0.5, -168) GlowFrame.Size = UDim2.new(0, 436, 0, 336) GlowFrame.ZIndex = 2 GlowCorner.CornerRadius = UDim.new(0, 16) GlowCorner.Parent = GlowFrame MainFrame.Name = "MainFrame" MainFrame.Parent = DiscordGui MainFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 15) MainFrame.Position = UDim2.new(0.5, -215, 0.5, -165) MainFrame.Size = UDim2.new(0, 430, 0, 330) MainFrame.ZIndex = 3 MainFrame.BorderSizePixel = 0 UICorner.CornerRadius = UDim.new(0, 14) UICorner.Parent = MainFrame TopBar.Name = "TopBar" TopBar.Parent = MainFrame TopBar.BackgroundColor3 = Color3.fromRGB(18, 18, 22) TopBar.Size = UDim2.new(1, 0, 0, 80) TopBar.ZIndex = 4 TopBar.BorderSizePixel = 0 TopBarCorner.CornerRadius = UDim.new(0, 14) TopBarCorner.Parent = TopBar TopGlow.Name = "TopGlow" TopGlow.Parent = TopBar TopGlow.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TopGlow.BackgroundTransparency = 0.95 TopGlow.Position = UDim2.new(0, 0, 1, -2) TopGlow.Size = UDim2.new(1, 0, 0, 2) TopGlow.ZIndex = 5 TopGlow.BorderSizePixel = 0 SamuraiIcon.Name = "VeloraIcon" SamuraiIcon.Parent = TopBar SamuraiIcon.BackgroundTransparency = 1 SamuraiIcon.Position = UDim2.new(0, 25, 0, 15) SamuraiIcon.Size = UDim2.new(0, 40, 0, 40) SamuraiIcon.Font = Enum.Font.Code SamuraiIcon.Text = "⚔" SamuraiIcon.TextColor3 = Color3.fromRGB(255, 255, 255) SamuraiIcon.TextSize = 32 SamuraiIcon.ZIndex = 6 Title.Name = "Title" Title.Parent = TopBar Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 75, 0, 18) Title.Size = UDim2.new(1, -140, 0, 25) Title.Font = Enum.Font.GothamBold Title.Text = "Velora'^s Server" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 20 Title.TextXAlignment = Enum.TextXAlignment.Left Title.ZIndex = 6 Subtitle.Name = "Subtitle" Subtitle.Parent = TopBar Subtitle.BackgroundTransparency = 1 Subtitle.Position = UDim2.new(0, 75, 0, 45) Subtitle.Size = UDim2.new(1, -140, 0, 20) Subtitle.Font = Enum.Font.Code Subtitle.Text = "侍 Free Scripts" Subtitle.TextColor3 = Color3.fromRGB(180, 180, 180) Subtitle.TextSize = 13 Subtitle.TextXAlignment = Enum.TextXAlignment.Left Subtitle.ZIndex = 6 CloseButton.Name = "CloseButton" CloseButton.Parent = TopBar CloseButton.BackgroundColor3 = Color3.fromRGB(35, 35, 40) CloseButton.Position = UDim2.new(1, -50, 0.5, -15) CloseButton.Size = UDim2.new(0, 30, 0, 30) CloseButton.Font = Enum.Font.GothamBold CloseButton.Text = "×" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 22 CloseButton.ZIndex = 7 CloseButton.BorderSizePixel = 0 CloseCorner.CornerRadius = UDim.new(0, 8) CloseCorner.Parent = CloseButton ContentFrame.Name = "ContentFrame" ContentFrame.Parent = MainFrame ContentFrame.BackgroundTransparency = 1 ContentFrame.Position = UDim2.new(0, 0, 0, 80) ContentFrame.Size = UDim2.new(1, 0, 1, -80) ContentFrame.ZIndex = 4 MessageLabel.Name = "MessageLabel" MessageLabel.Parent = ContentFrame MessageLabel.BackgroundTransparency = 1 MessageLabel.Position = UDim2.new(0, 40, 0, 35) MessageLabel.Size = UDim2.new(1, -80, 0, 70) MessageLabel.Font = Enum.Font.GothamMedium MessageLabel.Text = "Join Our Discord For More\n\nSources • Leaks • Free Scripts" MessageLabel.TextColor3 = Color3.fromRGB(220, 220, 220) MessageLabel.TextSize = 16 MessageLabel.TextWrapped = true MessageLabel.TextYAlignment = Enum.TextYAlignment.Top MessageLabel.ZIndex = 5 MessageLabel.LineHeight = 1.4 Divider.Name = "Divider" Divider.Parent = ContentFrame Divider.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Divider.BackgroundTransparency = 0.9 Divider.Position = UDim2.new(0, 40, 0, 115) Divider.Size = UDim2.new(1, -80, 0, 1) Divider.ZIndex = 5 Divider.BorderSizePixel = 0 ButtonGlow.Name = "ButtonGlow" ButtonGlow.Parent = ContentFrame ButtonGlow.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ButtonGlow.BackgroundTransparency = 0.94 ButtonGlow.Position = UDim2.new(0.5, -153, 1, -73) ButtonGlow.Size = UDim2.new(0, 306, 0, 56) ButtonGlow.ZIndex = 5 ButtonGlow.BorderSizePixel = 0 ButtonGlowCorner.CornerRadius = UDim.new(0, 14) ButtonGlowCorner.Parent = ButtonGlow CopyButton.Name = "CopyButton" CopyButton.Parent = ContentFrame CopyButton.BackgroundColor3 = Color3.fromRGB(245, 245, 245) CopyButton.Position = UDim2.new(0.5, -150, 1, -70) CopyButton.Size = UDim2.new(0, 300, 0, 50) CopyButton.Font = Enum.Font.GothamBold CopyButton.Text = "⚡ COPY INVITE LINK" CopyButton.TextColor3 = Color3.fromRGB(15, 15, 15) CopyButton.TextSize = 15 CopyButton.ZIndex = 6 CopyButton.BorderSizePixel = 0 CopyCorner.CornerRadius = UDim.new(0, 12) CopyCorner.Parent = CopyButton local dragging local dragInput local dragStart local startPos local smoothness = 0.15 local function smoothUpdate(input) local delta = input.Position - dragStart local targetPos = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) game:GetService("TweenService"):Create( MainFrame, TweenInfo.new(smoothness, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {Position = targetPos} ):Play() local shadowTarget1 = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X - 8, startPos.Y.Scale, startPos.Y.Offset + delta.Y - 8 ) game:GetService("TweenService"):Create( Shadow1, TweenInfo.new(smoothness, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {Position = shadowTarget1} ):Play() local shadowTarget2 = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X - 13, startPos.Y.Scale, startPos.Y.Offset + delta.Y - 13 ) game:GetService("TweenService"):Create( Shadow2, TweenInfo.new(smoothness, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {Position = shadowTarget2} ):Play() local glowTarget = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X - 3, startPos.Y.Scale, startPos.Y.Offset + delta.Y - 3 ) game:GetService("TweenService"):Create( GlowFrame, TweenInfo.new(smoothness, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {Position = glowTarget} ):Play() end TopBar.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = MainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) TopBar.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if input == dragInput and dragging then smoothUpdate(input) end end) CloseButton.MouseButton1Click:Connect(function() game:GetService("TweenService"):Create(CloseButton, TweenInfo.new(0.15), {BackgroundColor3 = Color3.fromRGB(220, 50, 50)}):Play() wait(0.1) game:GetService("TweenService"):Create(MainFrame, TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.In), {Size = UDim2.new(0, 0, 0, 0)}):Play() game:GetService("TweenService"):Create(GlowFrame, TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.In), {Size = UDim2.new(0, 0, 0, 0)}):Play() game:GetService("TweenService"):Create(Shadow1, TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.In), {Size = UDim2.new(0, 0, 0, 0)}):Play() game:GetService("TweenService"):Create(Shadow2, TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.In), {Size = UDim2.new(0, 0, 0, 0)}):Play() wait(0.4) DiscordGui:Destroy() end) CopyButton.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/mS6W6uJeed") local originalText = CopyButton.Text local originalBg = CopyButton.BackgroundColor3 local originalTextColor = CopyButton.TextColor3 game:GetService("TweenService"):Create(CopyButton, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(15, 15, 15), TextColor3 = Color3.fromRGB(255, 255, 255) }):Play() CopyButton.Text = "✓ COPIED TO CLIPBOARD" wait(2) game:GetService("TweenService"):Create(CopyButton, TweenInfo.new(0.3), { BackgroundColor3 = originalBg, TextColor3 = originalTextColor }):Play() wait(0.3) CopyButton.Text = originalText end) CopyButton.MouseEnter:Connect(function() game:GetService("TweenService"):Create(CopyButton, TweenInfo.new(0.3, Enum.EasingStyle.Sine), { BackgroundColor3 = Color3.fromRGB(255, 255, 255), Size = UDim2.new(0, 310, 0, 52) }):Play() game:GetService("TweenService"):Create(ButtonGlow, TweenInfo.new(0.3, Enum.EasingStyle.Sine), { BackgroundTransparency = 0.88 }):Play() end) CopyButton.MouseLeave:Connect(function() if CopyButton.Text == "COPY INVITE LINK" then game:GetService("TweenService"):Create(CopyButton, TweenInfo.new(0.3, Enum.EasingStyle.Sine), { BackgroundColor3 = Color3.fromRGB(245, 245, 245), Size = UDim2.new(0, 300, 0, 50) }):Play() game:GetService("TweenService"):Create(ButtonGlow, TweenInfo.new(0.3, Enum.EasingStyle.Sine), { BackgroundTransparency = 0.94 }):Play() end end) CloseButton.MouseEnter:Connect(function() game:GetService("TweenService"):Create(CloseButton, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(220, 50, 50), Size = UDim2.new(0, 32, 0, 32) }):Play() end) CloseButton.MouseLeave:Connect(function() game:GetService("TweenService"):Create(CloseButton, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(35, 35, 40), Size = UDim2.new(0, 30, 0, 30) }):Play() end) spawn(function() while wait() do game:GetService("TweenService"):Create(GlowFrame, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), { BackgroundTransparency = 0.88 }):Play() wait(2) game:GetService("TweenService"):Create(GlowFrame, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), { BackgroundTransparency = 0.92 }):Play() wait(2) end end) MainFrame.Size = UDim2.new(0, 0, 0, 0) GlowFrame.Size = UDim2.new(0, 0, 0, 0) Shadow1.Size = UDim2.new(0, 0, 0, 0) Shadow2.Size = UDim2.new(0, 0, 0, 0) game:GetService("TweenService"):Create(MainFrame, TweenInfo.new(0.7, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Size = UDim2.new(0, 430, 0, 330)}):Play() game:GetService("TweenService"):Create(GlowFrame, TweenInfo.new(0.7, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Size = UDim2.new(0, 436, 0, 336)}):Play() game:GetService("TweenService"):Create(Shadow1, TweenInfo.new(0.7, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Size = UDim2.new(0, 446, 0, 346)}):Play() game:GetService("TweenService"):Create(Shadow2, TweenInfo.new(0.7, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Size = UDim2.new(0, 456, 0, 356)}):Play() wait(2.5) if game:GetService("CoreGui"):FindFirstChild("ToraScript") then game:GetService("CoreGui").ToraScript:Destroy() end local v1 = loadstring(game:HttpGet("https://raw.githubusercontent.com/liebertsx/Tora-Library/main/src/librarynew", true))() local v2 = v1:CreateWindow("2 Player Steal Brainrot") v2:AddToggle({ text = "Instant Steals", flag = "toggle", state = false, callback = function(p3) _G.Steals = p3 print("Steals: ", p3) if p3 then Steals() end end }) function Steals() spawn(function() _G.Steals = true while _G.Steals do wait() pcall(function() if game:GetService("Players").LocalPlayer:GetAttribute("stealing") == true then local v4, v5, v6 = pairs(workspace.Map.Bases:GetDescendants()) while true do local v7 v6, v7 = v4(v5, v6) if v6 == nil then break end if v7.Name == "BillboardGui" and (v7.Enabled == true and v7.Parent.Name == "BillboardPart") then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 50, 0) wait(4) game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v7.Parent.Parent.Parent.Parent.Parent.Parent.RootPart.CFrame * CFrame.new(0, - 20, 0) wait(2) end end end wait() end) end end) end v2:AddToggle({ text = "Auto Lock", flag = "toggle", state = false, callback = function(p8) _G.Lock = p8 print("Lock: ", p8) if p8 then Lock() end end }) function Lock() spawn(function() _G.Lock = true while _G.Lock do wait() pcall(function() local v9 = game.Players.LocalPlayer local v10 = v9.Character if v10 then v10 = v9.Character:FindFirstChild("HumanoidRootPart") end if v10 then local v11 = v10.CFrame local v12, v13, v14 = pairs(workspace.Map.Bases:GetDescendants()) while true do local v15 v14, v15 = v12(v13, v14) if v14 == nil then break end if v15.Name == "BillboardGui" and (v15.Enabled == true and v15.Parent.Name == "BillboardPart") and (v15.Parent:FindFirstAncestorWhichIsA("Model") and (v15.Parent.Parent.Parent.Parent.Parent.Parent:FindFirstChild("Interactables") and (v15.Parent.Parent.Parent.Parent.Parent.Parent.Interactables.Model.LaserButton.TouchPart:FindFirstChild("LockBillboard") and v15.Parent.Parent.Parent.Parent.Parent.Parent.Interactables.Model.LaserButton.TouchPart.LockBillboard.Frame.Lock.Text == "LOCK"))) then v10.CFrame = v15.Parent.Parent.Parent.Parent.Parent.Parent.Interactables.Model.LaserButton.TouchPart.CFrame * CFrame.new(0, 10, 0) wait(0.5) v10.CFrame = v11 end end end wait(0.5) end) end end) end v2:AddToggle({ text = "Instant Press", flag = "toggle", state = false, callback = function(p16) _G.Press = p16 print("Press: ", p16) if p16 then Press() end end }) function Press() spawn(function() _G.Press = true while _G.Press do wait() pcall(function() local v17, v18, v19 = pairs(workspace.Map.Bases:GetDescendants()) while true do local v20 v19, v20 = v17(v18, v19) if v19 == nil then break end if v20.Name == "StealProximity" then v20.Enabled = true end end local v21, v22, v23 = pairs(workspace.Map.Bases:GetDescendants()) while true do local v24 v23, v24 = v21(v22, v23) if v23 == nil then break end if v24.ClassName == "ProximityPrompt" then v24.HoldDuration = 0 v24.MaxActivationDistance = 20 end end wait(1) end) end end) end v2:AddButton({ text = "Remove Walls", flag = "button", callback = function() local v25, v26, v27 = pairs(workspace.Map.Bases:GetDescendants()) while true do local v28 v27, v28 = v25(v26, v27) if v27 == nil then break end if v28.Name == "Wall" or v28.Name == "BackWall" then v28:Destroy() end end end }) v2:AddLabel({ text = "leakedby thirst" }) v1:Init() game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(p29) fireproximityprompt(p29) end)