STEEP STEPS – AIRWALK SCRIPT

Created by Koragon

Features:

  • AIRWALK
    • Hold “v” after executing
local UIS = game:GetService("UserInputService")

local isClimbing = false

local tracker = nil

UIS.InputBegan:Connect(function(input,gpe)
	if gpe then return end
	
	if(input.KeyCode == Enum.KeyCode.V) then
		isClimbing = true
		
		if(tracker) then
			tracker:Destroy()
		end
		
		local instance = Instance.new("Part")
		
		tracker = instance
		
		while isClimbing do
			wait()
			instance.Parent = workspace
			instance.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-2,0)
			instance.Anchored = true
			
		end
	end
end)

UIS.InputEnded:Connect(function(input,gpe)
	if gpe then return end

	if(input.KeyCode == Enum.KeyCode.V) then
		isClimbing = false
	end
end)

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!