Roblox’s Draw A Raft & Set Sail is a delightful test of engineering and patience. You are tasked with sketching a vessel, spawning it into a realistic ocean, and hoping your physics-based creation doesn’t capsize or sink before reaching the finish line. The challenge is real—heavy rafts sink, light rafts flip, and the ocean is unforgiving. But what if you didn’t have to worry about drowning? What if you could buy every upgrade instantly? This is where Draw A Raft & Set Sail scripts come into play.
In this guide, we are diving deep into the best tools available to break the game’s limits. Whether you are tired of your character ragdolling every time you touch the water or you simply want to unlock every sea creature without the grind, we have curated the ultimate list for you. From infinite money scripts to creature unlockers, these cheats will turn your struggles into a smooth sail.
We will provide the raw Lua code for each script, explain how they function, and guide you on how to execute them safely. Get ready to conquer the ocean with these powerful Draw A Raft & Set Sail script options!

1. Anti-Drown & Infinite Money – (God Mode & Cash)
This first script is a comprehensive solution for players who want to survive and thrive. It addresses the two biggest hurdles in the game: running out of money and dying in the water.
Script Features
| Feature Category | Specific Functions |
|---|---|
| Survival | Anti-Drown (Prevents water death) |
| Economy | Infinite Money (Cash generation) |
| Usability | Key Link Required |
Detailed Description
The “anti drown and inf money” script by araktuakkkkkkkk is designed to make you invincible against the ocean’s hazards. Normally, falling into the water triggers a drowning mechanic or ragdoll state. This script likely disables the UnderwaterDetection or modifies your character’s state to prevent this, effectively giving you God Mode against water.
Simultaneously, it injects cash into your account. Money in Draw A Raft & Set Sail is used to buy better materials and upgrades for your raft. By having infinite funds, you can experiment with the wildest designs without worrying about the cost. This is a top-tier Draw A Raft & Set Sail script for those who want creative freedom without survival constraints.
Safety Tips
- Key System: This script uses a key system. Be careful when navigating linkvertise sites to get the key. Use an ad-blocker if possible.
- Money Flooding: Adding too much money at once might flag your account. Use the infinite money feature sparingly.
loadstring(game:HttpGet("https://api.jnkie.com/api/v1/luascripts/public/65fd100947908155f17def548fa1dfb8c2b8c616e71b34a094ecba927b3ee8d1/download"))()
2. NoUnderwaterRagdoll – (Physics Fix & Water Walking)
If you find the ragdoll physics annoying, this script is a lifesaver. It is a more technical, lightweight script that specifically targets the character’s interaction with water.
Script Features
| Feature Category | Specific Functions |
|---|---|
| Physics | Prevents Ragdoll on Water Contact |
| Movement | Keeps Character Above Water (Float Force) |
| Cleanup | Removes UnderwaterDetection Folder |
Detailed Description
This script by mcdaggitt acts as a No Ragdoll cheat. In the vanilla game, hitting the water often makes your character go limp, making it hard to climb back onto your raft. This script deletes the UnderwaterDetection folder from your character, effectively blinding the game to the fact that you are submerged.
Furthermore, it uses WaveMath and a VectorForce to calculate the wave height and physically push your character upwards if they fall below the water line. This essentially allows you to walk or float on water, making it impossible to drown. It is an excellent Draw A Raft & Set Sail script no key required tool for maintaining control during rough seas.
Safety Tips
- Physics Glitches: Since this script manipulates forces on your character, it might conflict with other physics scripts (like fly). Use one movement script at a time.
local person = game.Players.LocalPlayer
local body = person.Character
local humanoidr = body:WaitForChild("HumanoidRootPart")
local humanoidp = body:WaitForChild("Humanoid")
local folder = workspace:FindFirstChild(person.Name)
if folder then
local uw = folder:FindFirstChild("UnderwaterDetection")
if uw then uw:Destroy() end
end
local ocean = workspace:FindFirstChild("OceanTile1")
local wavemath = require(game.ReplicatedStorage.WaveMath)
local floatForce
local function keepAboveWater()
local pos = humanoidr.Position
local waveY = ocean.Position.Y + math.abs(ocean.Position.Y) + wavemath.GetPosition(pos.X,pos.Z,workspace:GetServerTimeNow()).Y
if pos.Y < waveY then
if not floatForce then
floatForce = Instance.new("VectorForce")
floatForce.Name = "floatForce"
floatForce.Attachment0 = humanoidr.RootAttachment
floatForce.RelativeTo = Enum.ActuatorRelativeTo.World
floatForce.Parent = humanoidr
end
local mass = humanoidr.AssemblyMass
floatForce.Force = Vector3.new(0, math.clamp(mass*150*(waveY-pos.Y),0,mass*2000),0)
humanoidp:ChangeState(Enum.HumanoidStateType.GettingUp)
elseif floatForce then
floatForce:Destroy()
floatForce = nil
end
end
game:GetService("RunService").Heartbeat:Connect(keepAboveWater)
body:WaitForChild("IsRagdoll").Changed:Connect(function()
humanoidp:ChangeState(Enum.HumanoidStateType.GettingUp)
end)
3. INF MONEY – (Cash Generator Loop)
Sometimes you just want the cash. This script focuses purely on the economy, using a loop to constantly trigger the reward remote.
Script Features
| Feature Category | Specific Functions |
|---|---|
| Economy | Infinite Money (1000 Cash loop) |
| Automation | Automatic Reward Claiming |
Detailed Description
This script by NPCNOk is a brute-force method for getting rich. It uses a while wait() do loop to fire the GrantReward remote event repeatedly. It specifically requests a reward of “1,000 Cash” with an “Uncommon” rarity tag.
Because it targets game.Players:GetPlayers(), it might attempt to give money to everyone in the server (client-side visual or server-side depending on game security), but primarily it fills your wallet. It is the fastest way to afford the most expensive raft parts. This is a free Draw A Raft & Set Sail script that gets straight to the point.
Safety Tips
- Server Lag: Rapidly firing remote events can lag the server or crash your game. If you experience lag, increase the wait time in the script (e.g.,
wait(1)instead ofwait()). - Detection: Spamming remote events is easy for developers to log. Use this on an alt account first.
while wait() do
for i,v in pairs(game.Players:GetPlayers()) do
local args = {
{
type = "Money",
rarity = "Uncommon",
value = 1000,
color = Color3.new(0.3921568691730499, 0.7843137383460999, 0.3921568691730499),
icon = "\240\159\146\181",
displayName = "1,000 Cash"
}
}
game:GetService("ReplicatedStorage"):WaitForChild("GrantReward"):InvokeServer(unpack(args))
end
end
4. Shadow Hub – (Flight, Speed & Creature Unlocker)
Shadow Hub is a multi-feature GUI that offers a more refined cheating experience. It includes movement hacks and collection tools.
Script Features
| Feature Category | Specific Functions |
|---|---|
| Movement | Fly to Finish Line, Change Flight Speed |
| Collection | Get All Creatures, Get Money |
| Interface | Shadow Hub GUI |
Detailed Description
This hub by CodeWalker1337 is perfect for players who want to skip the “sailing” part entirely. The Fly to Finish Line feature allows you to bypass the entire map, instantly securing a win. You can adjust the flight speed to go faster or slower depending on your preference.
Additionally, it includes a “Get all creatures” button. Creatures are collectibles in the game, and having them all unlocks achievements or cosmetic bragging rights. Shadow Hub packages these features into a convenient interface. It requires a key (mentioning “Bypass.city”), making it a premium-feeling script Draw A Raft & Set Sail.
Safety Tips
- Flying: Flying is very obvious to other players. Do not use this in a crowded server if you want to avoid reports.
- Key System: As always, be cautious with key links.
loadstring(game:HttpGet("https://raw.githubusercontent.com/netizen123gg/ShadowHubX/main/SHADOW%20HUBX.txt"))()
5. Get all creatures I guess – (Creature Unlocker)
If you are a completionist, this script is for you. It focuses solely on unlocking the sea creatures without the need for a complex hub.
Script Features
| Feature Category | Specific Functions |
|---|---|
| Collection | Unlock Common (Archelon), Rare (Metriorhynchus), Legendary (Mosasaurus) Creatures |
| Efficiency | Instant Unlocking |
Detailed Description
Uploaded by IamJosh, this script interacts with the GrantReward remote to spoof the acquisition of specific sea creatures. It loops through a list containing “Archelon,” “Metriorhynchus,” and “Mosasaurus,” telling the server you have found them.
This saves you hours of exploration and RNG luck. It is a fantastic Draw A Raft & Set Sail script pastebin utility for filling out your collection book instantly.
Safety Tips
- One-Time Use: You only need to run this once to unlock the creatures. Running it repeatedly is unnecessary.
local remote = game:GetService("ReplicatedStorage"):WaitForChild("GrantReward")
local list = {
{rarity = "Common", name = "Archelon"},
{rarity = "rare", name = "Metriorhynchus"},
{rarity = "legendary", name = "Mosasaurus"}
}
for _, info in ipairs(list) do
task.spawn(function()
remote:InvokeServer({
type = "SeaCreature",
rarity = info.rarity,
creatureId = 1,
value = 1,
color = Color3.new(0.8313725590705872, 0.8313725590705872, 0.8313725590705872),
icon = "\240\159\144\162",
displayName = info.name
})
end)
end
How to Execute Draw A Raft & Set Sail Scripts on PC, Mac & Mobile
To use these scripts, you need a software called an Executor (or Exploit). This software injects the Lua code into the Roblox game client. Here is a step-by-step guide for all platforms.
PC (Windows) Execution
- Download an Executor: You need a reliable executor. Popular free options include Solara or Wave (availability changes often). Ensure you download from official sources to avoid malware.
- Launch the Game: Open Roblox and start Draw A Raft & Set Sail.
- Attach: Open your executor software and click the “Attach” or “Inject” button. This connects the software to the game.
- Execute: Copy the code from the sections above. Paste it into the executor’s text box and click “Execute.” The script should run immediately.
Mobile (Android) Execution
- Get a Mobile Executor: Apps like Delta or Arceus X are the standard. You will need to download the APK and install it (this replaces the standard Roblox app).
- Key System: Most mobile executors require you to watch an ad to get a 24-hour key.
- Run: Open the game via the executor app. Tap the floating icon, paste the keyless Draw A Raft & Set Sail script code, and hit play.
Mac Execution
- Mac Executors: Mac support is limited, but Hydrogen or MacSploit are good options.
- Process: The process is similar to PC. Open the game, attach the executor, paste the code, and run.
Draw A Raft & Set Sail Beginner Guide
If you are new to the game, scripts can make it fun, but understanding the physics makes it rewarding.
Raft Physics
- Balance: A wider raft is more stable. If you draw a tall, thin boat, it will capsize instantly.
- Weight: Heavier rafts sit lower in the water. They are stable but slow. Lighter rafts are fast but bounce dangerously on waves.
- Shape: Aerodynamic (or hydrodynamic) shapes cut through the water better.
Strategy
Start with a simple flat barge. As you earn money (or use scripts to get it), add walls and a roof to protect yourself from washing overboard. If you aren’t using the NoUnderwaterRagdoll script, staying dry is your #1 priority.
Draw A Raft & Set Sail Codes
Codes are a legitimate way to get free resources. However, at the moment, the developer situation is quiet.
Current Active Codes:
- There are currently no active codes for Draw A Raft & Set Sail.
Expired Codes:
- No expired codes yet.
How to Redeem:
Since there is no code system currently implemented, you cannot redeem codes. We will update this section if a code button is added in future updates. For now, using a free Draw A Raft & Set Sail script is the only way to get freebies.
FAQs About Draw A Raft & Set Sail Scripts
Is it safe to use these scripts?
There is always a risk when using third-party software on Roblox. However, Draw A Raft & Set Sail is a non-competitive sandbox game. Developers are less likely to ban you compared to competitive shooters. Still, use an alt account to be safe.
Do I need a key for these scripts?
Script 1 & 4: Yes, these likely require a key from the developer’s link.
Script 2, 3 & 5: No, these appear to be keyless Draw A Raft & Set Sail scripts that you can copy and paste directly.
Why isn’t the script working?
Roblox updates every Wednesday. These updates can break scripts. If a script stops working, try a different one from the list or wait for the script developer to update their code.
Conclusion
Draw A Raft & Set Sail is a fantastic physics sandbox, but the grind for money and creatures can be slow. By utilizing the Draw A Raft & Set Sail scripts detailed in this guide, you can unlock the full potential of the game instantly. Whether you choose the invincibility of the Anti-Drown script or the wealth of the Inf Money loop, you are set for a smooth voyage.
Remember to script responsibly and bookmark this page for the latest Draw A Raft & Set Sail script updates! Happy sailing!