You got it! NT Gold.

You will get NT gold cars everywhere in Garage on nitro type and math. (It's very shiny!)

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         You got it! NT Gold.
// @namespace    https://www.youtube.com/@GaSk-nitype
// @version      2.22
// @description  You will get NT gold cars everywhere in Garage on nitro type and math. (It's very shiny!)
// @author       GaSk (GaSkertube)
// @match        https://www.nitrotype.com/garage
// @license MIT
// ==/UserScript==
 
 
 
 
/*88+pro.get_post(local_)
      GET.CAR.id(175);
    game = Nitro Type;
  game.give(GaSk NT, NT Gold);
amount = garageFull; */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
var carId = 175;
var cr = "https://www.nitrotype.com/cars/"+carId+"_large_1.png";
window.onload = function(){
	var t = document.querySelectorAll(".is-empty");
	var pC = document.querySelector(".profile-car");
			t.forEach(function(tt){
				tt.className = "garage-spot";
			})
			
	var nw = document.querySelectorAll(".garage-spot");
	nw.forEach(function(gs){
		gs.addEventListener("click", function(){
			pC.src = cr;
			setTimeout(function(){
				pC.src = cr;
				pC.setAttribute("class", "profile-car is-exiting");
			}, 200);
		setTimeout(function(){
			pC.setAttribute("class", "profile-car is-entering");
			pC.src = "https://www.nitrotype.com/cars/97_large_1.png";
			document.querySelectorAll(".mtm")[0].innerHTML = "Wampus"
		}, 300)
		
			})
	})
	var x = document.querySelectorAll(".garage-vehichleImage");
	x.forEach(function(y){
		y.style.backgroundImage = "url(https://www.nitrotype.com/cars/175_small_1.png)";
		y.setAttribute("data-tip", "NT Gold");
		
	})
	
}