Advertisement
giorgichaduneli

Ez

Apr 7th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. local KeyLibrary = KeyLibrary or loadstring(game:HttpGet('https://raw.githubusercontent.com/MaGiXxScripter0/keysystemv2api/master/setup_obf.lua'))()
  2. local KeySystem = KeyLibrary.new('Proxed')
  3. local Key = _G.key or nil
  4. if Key==nil or Key=="" then
  5. return game.Players.LocalPlayer:Kick("InvalidHwid.")
  6. elseif not KeySystem:verifyPremiumKey(Key) then
  7. return game.Players.LocalPlayer:Kick("Invalid Hwid.")
  8. end
  9.  
  10. local Fluent = loadstring(game:HttpGet("https://raw.githubusercontent.com/bosterdrone/private/main/main.txt"))()
  11. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  12. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  13.  
  14. local Window = Fluent:CreateWindow({
  15. Title = "Visual Paid",
  16. SubTitle = "by bosterdrone",
  17. TabWidth = 160,
  18. Size = UDim2.fromOffset(580, 460),
  19. Acrylic = true,
  20. Theme = "Dark",
  21. MinimizeKey = Enum.KeyCode.LeftControl
  22. })
  23.  
  24. local Tabs = {
  25. Main = Window:AddTab({ Title = "Main", Icon = "" }),
  26. Settings = Window:AddTab({ Title = "Settings", Icon = "settings" })
  27. }
  28.  
  29. local Options = Fluent.Options
  30.  
  31. Fluent:Notify({
  32. Title = "Notification",
  33. Content = "This is a notification",
  34. SubContent = "SubContent",
  35. Duration = 5
  36. })
  37.  
  38. Tabs.Main:AddParagraph({
  39. Title = "About",
  40. Content = "Visual Paid"
  41. })
  42.  
  43. local gui = Instance.new("ScreenGui", game.CoreGui)
  44. local frame = Instance.new("Frame")
  45. local button = Instance.new("TextButton")
  46.  
  47. gui.ResetOnSpawn = false
  48. frame.Size = UDim2.new(0, 150, 0, 75)
  49. frame.Position = UDim2.new(0, 10, 0, 10)
  50. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  51. frame.BorderSizePixel = 0
  52. frame.Active = true
  53. frame.Draggable = true
  54. frame.Parent = gui
  55. frame.Visible = false
  56.  
  57. button.Text = "Off"
  58. button.Size = UDim2.new(1, -20, 1, -20)
  59. button.Position = UDim2.new(0, 10, 0, 10)
  60. button.BackgroundColor3 = Color3.new(0, 0, 0)
  61. button.BorderColor3 = Color3.new()
  62. button.BorderSizePixel = 2
  63. button.Font = Enum.Font.SourceSans
  64. button.TextColor3 = Color3.new(1, 1, 1)
  65. button.TextSize = 16
  66. button.Parent = frame
  67.  
  68. local activated = false
  69.  
  70. local function toggle()
  71. activated = not activated
  72. button.Text = activated and "On" or "Off"
  73. while activated do
  74. for _ = 1, 15 do
  75. 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})
  76. end
  77. game:GetService("RunService").Heartbeat:Wait()
  78. end
  79. end
  80.  
  81. button.MouseButton1Click:Connect(toggle)
  82.  
  83. local Toggle = Tabs.Main:AddToggle("MyToggle", {
  84. Title = "Manual Spam",
  85. Description = "Activate The Spam Manually",
  86. Default = false,
  87. Callback = function(state)
  88. if state then
  89. frame.Visible = true
  90. else
  91. frame.Visible = false
  92. activated = false
  93. end
  94. end
  95. })
  96.  
  97. Tabs.Main:AddButton({
  98. Title = "Anti Cheat Bypass",
  99. Description = "Only run it 1 time per server",
  100. Callback = function()
  101. Window:Dialog({
  102. Title = "Title",
  103. Content = "This is a dialog",
  104. Buttons = {
  105. {
  106. Title = "Confirm",
  107. Callback = function()
  108. --[[
  109. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  110. ]]
  111. -- Removes Anti-Cheat, Thanks Devs For Making This Easy.
  112.  
  113. print("Bypassing Security Checks..")
  114.  
  115. game:GetService("ReplicatedStorage").Security.RemoteEvent:Destroy()
  116. game:GetService("ReplicatedStorage").Security[""]:Destroy()
  117. game:GetService("ReplicatedStorage").Security:Destroy()
  118. game:GetService("Players").LocalPlayer.PlayerScripts.Client.DeviceChecker:Destroy()
  119. end
  120. },
  121. {
  122. Title = "Cancel",
  123. Callback = function()
  124. print("Cancelled the dialog.")
  125. end
  126. }
  127. }
  128. })
  129. end
  130. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement