Date = "20220104" ------enter your date (In Formate YYYYMMDD) date = os.date("%Y%m%d") if date >= Date then vibrator = activity.getSystemService(Context.VIBRATOR_SERVICE) vibrator.vibrate( long{650,650} ,-1) dialog=AlertDialog.Builder(this) .setTitle("⚠️ INJECTOR EXPIRED ⚠️") .setCancelable(false) .setMessage("UPDATE IS REQUIRED \n\nYoutube: Insure Gamers \n\nGo To The Channel For Latest Injector. \nWait for it....!!!") .setPositiveButton("EXIT",{onClick=function(v) os.exit() end}) .setNeutralButton("YOUTUBE",{onClick = function(v) url = "YOUR CHANNEL LINK" activity.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(url))) os.exit() end}) .show() import "android.text.SpannableString" import "android.text.style.ForegroundColorSpan" import "android.text.Spannable" texttitle = SpannableString("⚠️ INJECTOR EXPIRED ⚠️") texttitle.setSpan(ForegroundColorSpan(0xFFFF0000),0,#texttitle,Spannable.SPAN_EXCLUSIVE_INCLUSIVE) dialog.setTitle(texttitle) return end