All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Fake Macro (Speed Glitch

The Fake Macro (Speed Glitch code is below. Copy & inject it into the game. Enjoy!

--Settings
local sped = 110 -- Speed
local keybind = "q"




--The Script

yes = false
	plr = game.Players.LocalPlayer
	mouse = plr:GetMouse()
	mouse.KeyDown:connect(function(key)
		if key == keybind and yes == false then
			yes = true
			game.Players.LocalPlayer.Character.Humanoid.Name = "Humz"
			game.Players.LocalPlayer.Character.Humz.WalkSpeed = sped
			game.Players.LocalPlayer.Character.Humz.JumpPower = 50
		elseif key == keybind and yes == true then
			yes = false
			game.Players.LocalPlayer.Character.Humz.WalkSpeed = 16
			game.Players.LocalPlayer.Character.Humz.JumpPower = 50
			game.Players.LocalPlayer.Character.Humz.Name = "Humanoid"
		end
	end)