Kick a Lucky Block
1.9k Views

Kick un Lucky Block

Kick a Lucky BlockUploaded by
2 months ago
Please login to perform these actions:

Description

Kick with max power, Auto Kick, Collect, Auto Collect, Auto extra bonus from weight, Auto Rebirth, Speed, Claim money, Auto claim money open source btw

View Raw
Edited By: voltex Download


Comments
6
User profile picture
johnrerdi 2 months ago
local get = cloneref or function(x) return x end local players = get(game:GetService("Players")) local lp = players.LocalPlayer local rs = get(game:GetService("RunService")) local vim = get(game:GetService("VirtualInputManager")) local rep = get(game:GetService("ReplicatedStorage")) local marketplace = get(game:GetService("MarketplaceService")) local tweens = get(game:GetService("TweenService")) -- Safe Handler Loading (This was causing the crash) local Handler = {} local success, result = pcall(function() return require(rep.Modules.HandlerLoader.GameHandler) end) if success then Handler = result else warn("Handler failed to load:", result) end local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = marketplace:GetProductInfo(game.PlaceId).Name, Loading*le = "something or another", LoadingSub*le = "fuhh you", }) local Network = rep["Shared"]["Packages"]["Network"] local area = workspace.Areas.KickReady local waves = workspace.Waves local function _kick(strength) Network["rev_KickEvent"]:FireServer(strength or 1) end local following local function FollowWave() if following then following:Disconnect() end local hrp = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") if not hrp then return end following = rs.RenderStepped:Connect(function() if Handler.Status ~= "Tsunami" then if following then following:Disconnect() end following = nil return end local waveModel = waves:FindFirstChildWhichIsA("Model") local wave = waveModel and waveModel:FindFirstChildWhichIsA("Part") if not wave then return end hrp.CFrame = CFrame.new(wave.Position + Vector3.new(80, 0
johnrerdi's profile picturejohnrerdilocal get = cloneref or function(x) return x end ...
User profile picture
johnrerdi 2 months ago
, 0), wave.Position) end) end local main = Window:CreateTab("Main") main:CreateLabel("Kicking") main:CreateButton({ Name = "Kick with max power", Callback = function() _kick() end, }) local autoKick = false main:CreateToggle({ Name = "Auto Kick", CurrentValue = false, Callback = function(v) autoKick = v if not v then return end task.spawn(function() while task.wait(0.4) and autoKick do if Handler.InGame then continue end local hrp = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = area.CFrame end _kick(1) end end) end, }) main:CreateDivider() main:CreateButton({ Name = "Collect", Callback = function() FollowWave() end, }) local collecting = false main:CreateToggle({ Name = "Auto Collect", CurrentValue = false, Callback = function(v) collecting = v if not v and following then following:Disconnect() following = nil end end, }) main:CreateDivider() local gui = lp:WaitForChild("PlayerGui") local kupg = gui:WaitForChild("KickUpgrades") local function find() for _, item in ipairs(kupg:GetChildren()) do if item:IsA("ImageButton") and item.Name == "Bonus" and item.Visible then local pos = item.AbsolutePosition + (item.AbsoluteSize / 2) vim:SendMouseButtonEvent(pos.X, pos.Y, 0, true, game, 0) vim:SendMouseButtonEvent(pos.X, pos.Y, 0, false, game, 0) break end end end local WeightBonus main:CreateToggle({ Name = "Auto extra bonus from weight (hide the ui)", CurrentValue = f
johnrerdi's profile picturejohnrerdi, 0), wave.Position) end) end local main = Wi...
User profile picture
johnrerdi 2 months ago
alse, Callback = function(v) if v then if not WeightBonus then WeightBonus = kupg.DescendantAdded:Connect(find) end find() else if WeightBonus then WeightBonus:Disconnect() WeightBonus = nil end end end, }) local misc = Window:CreateTab("Misc") misc:CreateToggle({ Name = "Auto Rebirth", CurrentValue = false, Callback = function(v) task.spawn(function() while task.wait(6) do if not v then continue end Network["rev_RebirthRequest"]:FireServer() end end) end, }) misc:CreateToggle({ Name = "Speed", CurrentValue = false, Callback = function(v) local humanoid = lp.Character and lp.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = v and humanoid.WalkSpeed * 2 or humanoid.WalkSpeed / 2 end end, }) misc:CreateDivider() local plot for _, item in ipairs(workspace.Plots:GetChildren()) do if item:GetAttribute("Owner") == lp.Name then plot = item break end end local function claim() local hrp = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") if not hrp or not plot then return end for _, slot in ipairs(plot.Buttons:GetChildren()) do firetouchinterest(hrp, slot, true) firetouchinterest(hrp, slot, false) end end misc:CreateButton({ Name = "Claim money", Callback = claim, }) misc:CreateToggle({ Name = "Auto claim money", CurrentValue = false, Callback = function(v) task.spawn(function() while task.wait(6) do if not v then continue end c
johnrerdi's profile picturejohnrerdialse, Callback = function(v) if v then...
User profile picture
johnrerdi 2 months ago
laim() end end) end, })
johnrerdi's profile picturejohnrerdilocal get = cloneref or function(x) return x end ...
User profile picture
voltex 2 months ago
@johnrerdi it's open source so uhm yea???
voltex's profile picturevoltex@johnrerdi it's open source so uhm yea???
User profile picture
johnrerdi 2 months ago
@voltex Yes it is
Please Login to add a comment.