Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Stair Mania! AUTOPLAY - Stair Mania! Script | Free Roblox Script
Stair Mania! Stair Mania!

Stair Mania! AUTOPLAY

Stair Mania! 17 views 2 weeks ago
Stair Mania! AUTOPLAY - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: Rylvns

Press F to toggle the auto play feature.

Stair Mania!
Explore more scripts
View all Stair Mania! scripts

41 Lines 773 Bytes

local u = game:GetService("UserInputService")

local p = game.Players.LocalPlayer

local map = workspace._GAME.Map

function main()
	local s = p.leaderstats.Stairs.Value
	local rig = workspace._GAME.CurrentPlayers:FindFirstChild(p.Name)
	if not rig then return end

	local t = map[s]
	if not t then return end
	local nt = map[s+1]
	if not nt then return end

	local tp = t:GetAttribute("WorldPosition")
	local ntp = nt:GetAttribute("WorldPosition")

	if (tp-ntp).Z > 0 then -- left
		mouse1click()
	else
		mouse2click()
	end

end

local tog = false
u.InputBegan:Connect(function(i)
	if i.KeyCode == Enum.KeyCode.F then
		tog = not tog
		
		task.spawn(function()
			while tog do
				main()
				task.wait(0.15)
			end
		end)
	end
end)

Comments

Comments section coming soon...

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/stair-mania-autoplay/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other