Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local KeyLibrary = KeyLibrary or loadstring(game:HttpGet('https://raw.githubusercontent.com/MaGiXxScripter0/keysystemv2api/master/setup_obf.lua'))()
- local KeySystem = KeyLibrary.new('Proxed')
- local Key = _G.key or nil
- if Key==nil or Key=="" then
- return game.Players.LocalPlayer:Kick("InvalidHwid.")
- elseif not KeySystem:verifyPremiumKey(Key) then
- return game.Players.LocalPlayer:Kick("Invalid Hwid.")
- end
- local Fluent = loadstring(game:HttpGet("https://raw.githubusercontent.com/bosterdrone/private/main/main.txt"))()
- local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
- local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
- local Window = Fluent:CreateWindow({
- Title = "Visual Paid",
- SubTitle = "by bosterdrone",
- TabWidth = 160,
- Size = UDim2.fromOffset(580, 460),
- Acrylic = true,
- Theme = "Dark",
- MinimizeKey = Enum.KeyCode.LeftControl
- })
- local Tabs = {
- Main = Window:AddTab({ Title = "Main", Icon = "" }),
- Settings = Window:AddTab({ Title = "Settings", Icon = "settings" })
- }
- local Options = Fluent.Options
- Fluent:Notify({
- Title = "Notification",
- Content = "This is a notification",
- SubContent = "SubContent",
- Duration = 5
- })
- Tabs.Main:AddParagraph({
- Title = "About",
- Content = "Visual Paid"
- })
- local gui = Instance.new("ScreenGui", game.CoreGui)
- local frame = Instance.new("Frame")
- local button = Instance.new("TextButton")
- gui.ResetOnSpawn = false
- frame.Size = UDim2.new(0, 150, 0, 75)
- frame.Position = UDim2.new(0, 10, 0, 10)
- frame.BackgroundColor3 = Color3.new(0, 0, 0)
- frame.BorderSizePixel = 0
- frame.Active = true
- frame.Draggable = true
- frame.Parent = gui
- frame.Visible = false
- button.Text = "Off"
- button.Size = UDim2.new(1, -20, 1, -20)
- button.Position = UDim2.new(0, 10, 0, 10)
- button.BackgroundColor3 = Color3.new(0, 0, 0)
- button.BorderColor3 = Color3.new()
- button.BorderSizePixel = 2
- button.Font = Enum.Font.SourceSans
- button.TextColor3 = Color3.new(1, 1, 1)
- button.TextSize = 16
- button.Parent = frame
- local activated = false
- local function toggle()
- activated = not activated
- button.Text = activated and "On" or "Off"
- while activated do
- for _ = 1, 15 do
- game:GetService("ReplicatedStorage").Remotes.ParryAttempt:FireServer(math.huge, CFrame.new(math.huge, math.huge, math.huge), {[tostring(math.huge)] = Vector3.new(math.huge, math.huge, math.huge)}, {math.huge, math.huge})
- end
- game:GetService("RunService").Heartbeat:Wait()
- end
- end
- button.MouseButton1Click:Connect(toggle)
- local Toggle = Tabs.Main:AddToggle("MyToggle", {
- Title = "Manual Spam",
- Description = "Activate The Spam Manually",
- Default = false,
- Callback = function(state)
- if state then
- frame.Visible = true
- else
- frame.Visible = false
- activated = false
- end
- end
- })
- Tabs.Main:AddButton({
- Title = "Anti Cheat Bypass",
- Description = "Only run it 1 time per server",
- Callback = function()
- Window:Dialog({
- Title = "Title",
- Content = "This is a dialog",
- Buttons = {
- {
- Title = "Confirm",
- Callback = function()
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- -- Removes Anti-Cheat, Thanks Devs For Making This Easy.
- print("Bypassing Security Checks..")
- game:GetService("ReplicatedStorage").Security.RemoteEvent:Destroy()
- game:GetService("ReplicatedStorage").Security[""]:Destroy()
- game:GetService("ReplicatedStorage").Security:Destroy()
- game:GetService("Players").LocalPlayer.PlayerScripts.Client.DeviceChecker:Destroy()
- end
- },
- {
- Title = "Cancel",
- Callback = function()
- print("Cancelled the dialog.")
- end
- }
- }
- })
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement