What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

instant auto green

Version / Update: v1.0.0
Download / Script Link
-- made by wish aka selfmade


local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UserInputService = game:GetService("UserInputService")
local RunService = game:GetService("RunService")

local shootRemote = ReplicatedStorage.Client.Remotes.Gameplay:WaitForChild("Shoot")

local perfectPower = 99.81245458126068
local shootDirection = "Down"
local thirdArg = false

local holdingE = false
local hasFired = false
local autoGreen = true

UserInputService.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == Enum.KeyCode.E then
holdingE = true
hasFired = false
end
end)

UserInputService.InputEnded:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == Enum.KeyCode.E then
holdingE = false
hasFired = false
end
end)

RunService.RenderStepped:Connect(function()
if autoGreen and holdingE and not hasFired then
local success, _ = pcall(function()
shootRemote:InvokeServer(perfectPower, shootDirection, thirdArg)
end)
if success then
hasFired = true
end
end
end)
[ View More ]
4d226f0b-9287-4170-80bc-7bed1156ad02.webp


rage auto green for the game it instantly shoots and is always green
 
Works on mobile
  1. Yes
Back
Top