Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- This For SkireScripts I'm Sorry Your GitHub is gone but i have your 2 Scripts
- -- Gun Ball
- --[[
- its fully open source and no im not sorry for my trash luau skills
- also for people this was made by Skire (x6x_0)
- OUXIE DISCORD SERVER: https://discord.gg/6a3rAf9r8k
- .d88888b. d8b 888
- d88P" "Y88b Y8P 888
- 888 888 888
- 888 888 888 888 888 888 888 .d88b. 888
- 888 888 888 888 `Y8bd8P' 888 d8P Y8b 888
- 888 888 888 888 X88K 888 88888888 Y8P
- Y88b. .d88P Y88b 888 .d8""8b. 888 Y8b. "
- "Y88888P" "Y88888 888 888 888 "Y8888 888
- 888 888 8888888 d888 .d8888b. .d8888b. 8888888
- 888 888 888 d8888 d88P Y88b d88P Y88b 888
- 888 888 888 888 888 888 888 888 888
- 888 .d88b. 8888b. .d88888 .d88b. 888d888 888 888 888 888 888 888 888 888 888
- 888 d88""88b "88b d88" 888 d8P Y8b 888P" 888 888 888 888 888 888 888 888 888
- 888 888 888 .d888888 888 888 88888888 888 888 Y88 88P 888 888 888 888 888 888
- 888 Y88..88P 888 888 Y88b 888 Y8b. 888 888 Y8bd8P 888 d8b Y88b d88P d8b Y88b d88P 888
- 88888888 "Y88P" "Y888888 "Y88888 "Y8888 888 8888888 Y88P 8888888 Y8P "Y8888P" Y8P "Y8888P" 8888888
- 888 888
- 888 888
- 888 888
- 88888b.d88b. 8888b. .d88888 .d88b. 88888b. 888 888 d8b
- 888 "888 "88b "88b d88" 888 d8P Y8b 888 "88b 888 888 Y8P
- 888 888 888 .d888888 888 888 88888888 888 888 888 888
- 888 888 888 888 888 Y88b 888 Y8b. 888 d88P Y88b 888 d8b
- 888 888 888 "Y888888 "Y88888 "Y8888 88888P" "Y88888 Y8P
- 888
- Y8b d88P
- "Y88P"
- 888 d8b
- 888 Y8P
- 888
- .d8888b 888 888 888 888d888 .d88b.
- 88K 888 .88P 888 888P" d8P Y8b
- "Y8888b. 888888K 888 888 88888888 888888
- X88 888 "88b 888 888 Y8b.
- 88888P' 888 888 888 888 "Y8888
- .d88 .d8888b. .d8888b. 88b. 888
- d88P" d88P Y88b d88P Y88b "Y88b 888
- d88P 888 888 888 Y88b 888
- 888 888 888 888d888b. 888 888 888 888 888 888
- 888 `Y8bd8P' 888P "Y88b `Y8bd8P' 888 888 888 888
- Y88b X88K 888 888 X88K 888 888 d88P Y8P
- Y88b. .d8""8b. Y88b d88P .d8""8b. Y88b d88P .d88P "
- "Y88 888 888 "Y8888P" 888 888 88888888 "Y8888P" 88P" 888
- ]]
- local ouxie = loadstring(game:HttpGet("https://raw.githubusercontent.com/SkireScripts/Ouxie/main/Ouxie%20UI%20v2.lua"))()
- ouxie:Window("Ouxie / Gun Ball")
- local tab1 = ouxie:NewTab({
- TabName = "Main";
- IconId = "rbxassetid://7072706318";
- })
- tab1:Toggle({
- Name = "Auto Block (100%)";
- Callback = function(bool)
- getgenv().auto_block = bool
- local function auto()
- while true do
- if auto_block then
- game:GetService("ReplicatedStorage").RemoteEvent:FireServer({
- ["name"] = "defense",
- ["origin"] = "balltargets"
- },{})
- else break
- end
- wait()
- end
- end
- auto()
- end;
- })
- tab1:Input({
- Name = "Quest (needs to be completed)";
- Defualt = "1/2/3";
- Callback = function(raw)
- getgenv().quest = tonumber(raw)
- print(quest)
- end
- })
- tab1:Toggle({
- Name = "INF Gems";
- Callback = function(bool)
- getgenv().inf_gems = bool
- local function auto()
- while true do
- if inf_gems then
- local ohTable1 = {
- ["name"] = "redeem",
- ["origin"] = "quests"
- }
- local ohTable2 = {
- [1] = getgenv().quest
- }
- game:GetService("ReplicatedStorage").RemoteEvent:FireServer(ohTable1, ohTable2)
- game:GetService("ReplicatedStorage").RemoteEvent:FireServer(ohTable1, ohTable2)
- game:GetService("ReplicatedStorage").RemoteEvent:FireServer(ohTable1, ohTable2)
- else break
- end
- wait()
- end
- end
- auto()
- end;
- })
- -- Blade Soccer don't mind i change your ui lib maybe put it back
- -- Fractions
- getgenv().auto = false
- getgenv().ability_spam = false
- function set()
- while true do
- if auto then
- local ball = game.Workspace:WaitForChild("Ball")
- game:GetService("ReplicatedStorage").Remotes.BlockEvent:FireServer(ball, ball.CFrame)
- else break
- end
- wait()
- end
- end
- function ability()
- while true do
- if ability_spam then
- game:GetService("ReplicatedStorage").Remotes.AbilityEvent:FireServer()
- else break
- end
- wait()
- end
- end
- -- Start , Ui
- local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
- local Window = Library:NewWindow("Blade Soccer ⚽")
- local Section = Window:NewSection("main")
- Section:CreateToggle("Spam Ability but (NoCD)", function(value)
- getgenv().ability_spam = bool
- ability()
- print(value)
- end)
- Section:CreateToggle("inf Block range", function(value)
- getgenv().auto = bool
- set()
- print(value)
- end)
- Section:CreateButton("Speed", function()
- function isNumber(str) if tonumber(str) ~= nil or str == 'inf' then return true end end local tspeed = 1 local hb = game:GetService("RunService").Heartbeat local tpwalking = true local player = game:GetService("Players") local lplr = player.LocalPlayer local chr = lplr.Character local hum = chr and chr:FindFirstChildWhichIsA("Humanoid") while tpwalking and hb:Wait() and chr and hum and hum.Parent do if hum.MoveDirection.Magnitude > 0 then if tspeed and isNumber(tspeed) then chr:TranslateBy(hum.MoveDirection * tonumber(tspeed)) else chr:TranslateBy(hum.MoveDirection) end end end
- print("Clicked")
- end)
- Section:CreateButton("inf jump", function()
- --script made by Youtube: MrGabbe. Discord: Mr_G_Curry #6982
- local infjmp = true
- game:GetService("UserInputService").jumpRequest:Connect(function()
- if infjmp then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid":ChangeState("Jumping")
- end
- end)
- print("Clicked")
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement