# Force
Some contracts will simply not take your money ¯\_(ツ)_/¯
The goal of this level is to make the balance of the contract greater than zero.
Things that might help:
- fallback (opens new window) methods
- Sometimes the best way to attack a contract is with another contract.
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
contract Force {/*
MEOW ?
/\_/\ /
____/ o o \
/~____ =ø= /
(______)__m_m)
*/}
TIP
You might want to check out how selfdestruct (opens new window) works and what it's for (opens new window)!