Roblox Database Logo
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
Home - Scripts - Master Pirate Script

Master Pirate Script

✅ Last Tested: March 2026 – All scripts working.

Master Pirate is a pirate-themed game where the grind for better gear, stronger abilities, and more power never really slows down. Every upgrade requires more resources than the last, and farming them manually takes a serious amount of time. These scripts take over the hard parts with Auto Boss, Pastebin so your progression keeps moving even when you step away.

Auto Boss Pastebin

Master Pirate Script


📜 Master Pirate Scripts (Auto Boss, Pastebin & More)

To run any of these scripts you will need a working Roblox executor. Check out the list at that link for free and paid options that work in 2026.

Master Pirate Script Auto Farm, Auto Quests, Auto Stats, Auto Chests, Auto Boss, Server Hop, Teleports

Script 1 KEYLESSMaster Pirate Script Auto Farm, Auto Quests, Auto Stats, Auto Chests, Auto Boss, Server Hop, Teleports
Auto Boss
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/TOPCITY2/paman007/main/Protected%20(4).lua"))()

Select all text above, copy it, then paste into your executor.

Master Pirate Script Pastebin2026 :

Script 2 KEYLESSMaster Pirate Script Pastebin2026 :
Pastebin
//-------------------------------------------------
//
// Script to control flying pirate ship with arrow keys
// Requires zcmd include.
//
// Scott Reed (h02) 2011
//
//-------------------------------------------------

#include <a_samp>
#include <zcmd>

#define SHIP_OBJECT_ID          8493
#define SHIP_SKULL_ATTACH       3524
#define SHIP_RAILS_ATTACH       9159
#define SHIP_LINES_ATTACH       8981

new PirateShip&#91;7];
new Float:carrierrot&#91;3];
new Float:carrierspeed;
new carriercontrol;
new piratecam;

public OnFilterScriptInit()
{
	PirateShip&#91;0] = CreateObject(8493, 0.0, 0.0, 0.0,   0.00, 0.00, 270.00);
	PirateShip&#91;1] = CreateAttachment(PirateShip&#91;0], SHIP_SKULL_ATTACH, 4.11, -5.53, -9.78, 0.0, 0.0, 90.0);
	PirateShip&#91;2] = CreateAttachment(PirateShip&#91;0], SHIP_SKULL_ATTACH, -4.11, -5.53, -9.78, 0.0, 0.0, -90.0);
	PirateShip&#91;3] = CreateAttachment(PirateShip&#91;0], SHIP_SKULL_ATTACH, -4.3378, -15.2887, -9.7863, 0.0, 0.0, -90.0);
	PirateShip&#91;4] = CreateAttachment(PirateShip&#91;0], SHIP_SKULL_ATTACH, 4.3378, -15.2887, -9.7863, 0.0, 0.0, 90.0);
	PirateShip&#91;5] = CreateAttachment(PirateShip&#91;0], SHIP_RAILS_ATTACH, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
	PirateShip&#91;6] = CreateAttachment(PirateShip&#91;0], SHIP_LINES_ATTACH, -0.5468, -6.1875, -0.4375, 0.0, 0.0, 0.0);
	SetObjectPos(PirateShip&#91;0], 2250.0, -1656.0, 15.0);
	EditObject(0, PirateShip&#91;1]);
}

stock CreateAttachment(attach, modelid, Float:X, Float:Y, Float:Z, Float:RX, Float:RY, Float:RZ)
{
	new obj = CreateObject(modelid, X, Y, Z, RX, RY, RZ);
	AttachObjectToObject(obj, attach, X, Y, Z, RX, RY, RZ);
	return obj;
}

public OnFilterScriptExit()
{
	for(new x;x<sizeof(PirateShip);x++)
	{
	    if(IsValidObject(PirateShip&#91;x])) DestroyObject(PirateShip&#91;x]);
	}
}
/*
public OnObjectMoved(objectid)
{
	if(objectid == PirateShip&#91;0])
	{
	    new Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz;
		GetObjectPos(PirateShip&#91;0],x,y,z);
		GetObjectRot(PirateShip&#91;0], rx, ry, rz);

		rz += 180;
		x -= (60 * floatsin(-rz, degrees));
		y -= (60 * floatcos(-rz, degrees));
		z -= (60 * floattan(-rx, degrees));

		MoveObject(PirateShip&#91;0],x,y,z,carrierspeed, carrierrot&#91;0] , carrierrot&#91;1], carrierrot&#91;2]);
	}
	return 1;
}
*/


public OnPlayerUpdate(playerid)
{
    if(carriercontrol == playerid)
    {
		new Keys,ud,lr;
	    GetPlayerKeys(playerid,Keys,ud,lr);

	    if(ud > 0)
		{
		    new Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz;
			GetObjectPos(PirateShip&#91;0], x, y, z);
			GetObjectRot(PirateShip&#91;0], rx, ry, rz);

			rz += 180;
			x -= (60 * floatsin(-rz, degrees));
			y -= (60 * floatcos(-rz, degrees));
			z -= (60 * floattan(-rx, degrees));
			MoveObject(PirateShip&#91;0],x,y,z,carrierspeed, carrierrot&#91;0] , carrierrot&#91;1], carrierrot&#91;2]);

			if(carrierrot&#91;0] > 360.0) carrierrot&#91;0] = 0.0;
			else carrierrot&#91;0] = carrierrot&#91;0] + 1.0;
		}
	    else if(ud < 0)
		{
		    new Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz;
			GetObjectPos(PirateShip&#91;0], x, y, z);
			GetObjectRot(PirateShip&#91;0], rx, ry, rz);

			rz += 180;
			x -= (60 * floatsin(-rz, degrees));
			y -= (60 * floatcos(-rz, degrees));
			z -= (60 * floattan(-rx, degrees));
			MoveObject(PirateShip&#91;0],x,y,z,carrierspeed, carrierrot&#91;0] , carrierrot&#91;1], carrierrot&#91;2]);

			if(carrierrot&#91;0] < 0.0) carrierrot&#91;0] = 360.0;
			else carrierrot&#91;0] = carrierrot&#91;0] - 1.0;
		}
	    if(lr > 0)
		{
			new Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz;
			GetObjectPos(PirateShip&#91;0], x, y, z);
			GetObjectRot(PirateShip&#91;0], rx, ry, rz);

			rz += 180;
			x -= (60 * floatsin(-rz, degrees));
			y -= (60 * floatcos(-rz, degrees));
			z -= (60 * floattan(-rx, degrees));
			MoveObject(PirateShip&#91;0],x,y,z,carrierspeed, carrierrot&#91;0] , carrierrot&#91;1], carrierrot&#91;2]);

			if(carrierrot&#91;2] <= 0.0) carrierrot&#91;2] = 359.0;
			else carrierrot&#91;2] = carrierrot&#91;2] - 1.0;
			
			//if(carrierrot&#91;1] < 90.0) carrierrot&#91;1] += 1.0;
		}
	    else if(lr < 0)
		{
		    new Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz;
			GetObjectPos(PirateShip&#91;0], x, y, z);
			GetObjectRot(PirateShip&#91;0], rx, ry, rz);

			rz += 180;
			x -= (60 * floatsin(-rz, degrees));
			y -= (60 * floatcos(-rz, degrees));
			z -= (60 * floattan(-rx, degrees));
			MoveObject(PirateShip&#91;0],x,y,z,carrierspeed, carrierrot&#91;0] , carrierrot&#91;1], carrierrot&#91;2]);

			if(carrierrot&#91;2] >= 360.0) carrierrot&#91;2] = 1.0;
			else carrierrot&#91;2] = carrierrot&#91;2] + 1.0;
			
			//if(carrierrot&#91;1] > -90.0) carrierrot&#91;1] -= 1.0;
		}
	}
    return 1;
}

CMD:tpship321(playerid, params&#91;])
{
	new Float:X, Float:Y, Float:Z;
	GetPlayerPos(playerid, X, Y, Z);
	SetObjectPos(PirateShip&#91;0], X, Y, Z);
	return 1;
}

CMD:control321(playerid, params&#91;])
{
	if(carriercontrol == playerid)
 	{
  		carriercontrol = INVALID_PLAYER_ID;
  		KillTimer(piratecam);
  		//SetCameraBehindPlayer(playerid);
    	SendClientMessage(playerid, 0xFFFFFF, "Stopped Controlling");
   	}
    else
    {
   		carriercontrol = playerid;
   		//piratecam = SetTimerEx("CameraUpdate", 10, true, "i", playerid);
    	SendClientMessage(playerid, 0xFFFFFF, "Controlling");
	}
 	return 1;
}

CMD:setcspeed(playerid, params&#91;])
{
	new string&#91;64];
	carrierspeed = floatstr(params);
	if(carrierspeed == 0.0)
	{
	    if(IsObjectMoving(PirateShip&#91;0])) StopObject(PirateShip&#91;0]);
	}

	format(string, sizeof(string), "Carrier speed set to %f", carrierspeed);
	SendClientMessage(playerid, 0xFFFFFF, string);
	return 1;
}

forward CameraUpdate(playerid);
public CameraUpdate(playerid)
{
    new Float:x, Float:y, Float:z, Float:X, Float:Y, Float:Z, Float:rx, Float:ry, Float:rz;
	GetObjectPos(PirateShip&#91;0],x,y,z);
	X=x; Y=y; Z=z;
	GetObjectRot(PirateShip&#91;0], rx, ry, rz);
	
	rz += 180;
	x -= (-60 * floatsin(-rz, degrees));
	y -= (-60 * floatcos(-rz, degrees));
	
	SetPlayerCameraPos(playerid, x, y, Z+10.0);
	SetPlayerCameraLookAt(playerid, X, Y, Z);
}

Select all text above, copy it, then paste into your executor.


🎮 How to Use the Master Pirate Script

1Get a working executor – see our Roblox Executor list for free options on PC, Mobile, and Mac.
2Launch Roblox and open Master Pirate.
3Open your executor, then click Inject or Attach.
4Copy any script above and paste it into the executor script box.
5Press Execute — the GUI will appear in-game.
6Toggle Auto Farm, Speed Hack, ESP and other features from the GUI menu.
7Always use an alt account to protect your main.

🎮 About The Master Pirate Script

Master Pirate Script

Master Pirate is a pirate-themed Roblox game where the grind for better gear, stronger devil fruit abilities, and higher stats never really slows down. Every tier of progression requires more farming than the last, and doing it all manually across multiple sessions adds up fast.

The auto farm and auto dungeon scripts are the biggest time-savers here since they keep your resources and stats climbing without any input. Add inf gem or auto sell on top and your currency never runs dry.

Always run these on an alt to keep your main account safe. The hubs in the list above push updates after game patches so check back here if one stops working.

Looking for free rewards? Check out our Master Pirate Codes page for every working code.

For everything outside the script side — character builds, zone unlocks, and what changed in the latest update — the Master Pirate has it covered.


⚠️ Disclaimer: All scripts on this page are for educational purposes only. Using scripts in Roblox violates the Roblox Terms of Service and may result in your account being permanently banned or suspended without warning. RobloxDatabase.com is not responsible for any consequences from using these scripts. Always use an alt account — never your main.


MORE FOR MASTER PIRATE

Working Codes for Master Pirate  |  Master Pirate Game Wiki

Another Similar Game :

Master Pirate CodesMaster Pirate Codes Master PirateMaster Pirate Last Pirate CodesLast Pirate Codes Last PirateLast Pirate

Leave a Comment Cancel reply

Promo Codes

Get your hands on exclusive cosmetics, in-game currency, and special bonuses! Redeem our extensive list of Roblox promo codes and stay ahead of the game.

FREE ITEMS
PROMO CODES
STAR CODES

Game Codes

Unlock exclusive in-game perks, boost your stats, and get an edge in your favorite Roblox games with our collection of verified and non expired game codes.

VIEW ALL
GENRES
POPULAR CODES

Items Codes

Customize your Roblox avatar to the max! Browse our thousands of collection of item codes to unlock unique hats, accessories, gear, and many more.

VIEW ALL
CATEGORY
POPULAR ITEMS

Music Codes

Jam out to your favorite tunes in Roblox! Discover music codes for the latest hits and timeless classics to personalize your in-game experience.

VIEW ALL
STYLE
ARTIST

Best Games

Looking for the hottest Roblox games? Explore our curated recommendations, discover hidden gems, and find your next gaming obsession.

BEST GAMES
THEMES
POPULAR GAMES

Roblox Guides

Level up your Roblox knowledge! Access in-depth guides, powerful tools, and valuable resources to enhance your gameplay and creation skills.

VIEW ALL
GAMES WIKI
ERRORS

Tools

Tap into the Roblox community! Find player-created tools, expert guides, and collaborative resources to elevate your Roblox journey.

VIEW ALL
USERNAME GENERATOR
EXECUTOR

Roblox Scripts

Unlock hidden potential, customize your gameplay, and push the limits of your favorite Roblox game with our powerful script collection.

VIEW ALL
GENRE
POPULAR SCRIPTS
Roblox Database Logo

Roblox Database is your all-in-one source for anything and everything related to Roblox.

Whether you’re looking for the latest game codes, item codes, or promo codes or need some scripting guidance, we’ve got you covered.

Facebook-f Twitter Youtube Instagram Pinterest
Quick Links
  • About
  • Contact
  • Tools
  • Privacy Policy
  • Terms of Service
  • Copyright Policy
Menu
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
Download
chrome logo
  • Email: robloxdatabase23@gmail.com
  • Android : Coming Soon
  • IOS : Coming Soon

© 2026 All Rights Reserved.