--BROUGHT TO YOU BY RobloxScripter.com!--
local toggled
game:GetService('UserInputService').InputBegan:Connect(
function(input)
if (input.KeyCode == Enum.KeyCode.X) then
toggled = not toggled
end
end
)
while (wait()) do
if (toggled) then
game:GetService("ReplicatedStorage").Remotes.Gameplay.FakeGun:FireServer("")
end
end