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 control ben (game got banned)

The control ben (game got banned) code is below. Copy & inject it into the game. Enjoy!

Ask Ben - control ben
local gui = game.Players.LocalPlayer.PlayerGui.QuestionGUI.BenOptions
local remote = game:GetService("ReplicatedStorage").CheckBen
local oldNamecall
oldNamecall = hookmetamethod(game, "__namecall", function(self, ...)
	local namecallMethod = getnamecallmethod()

	if not checkcaller() and self == remote and namecallMethod == "InvokeServer" then
		return game.Players.LocalPlayer
	end
	return oldNamecall(self, ...)
end)
gui.Visible = true
gui:GetPropertyChangedSignal("Visible"):Connect(function()
	if gui.Visible == false then
		gui.Visible = true
	end
end)