What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Rayfield Natural disaster D6

Version / Update: v1.0.0
Download / Script Link
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local Window = Rayfield:CreateWindow({
Name = "Accuntrobloxian NDS GUI 🌪️",
LoadingTitle = "Natural Disaster Survival",
LoadingSubtitle = "by Accuntrobloxian",
ConfigurationSaving = {
Enabled = false,
FolderName = nil,
FileName = "AccuntNDS"
}
})

-- =====================================
-- Main Tab - Survival Cheats
-- =====================================
local MainTab = Window:CreateTab("Main Cheats", 4483362458) -- Lucide icon id (optional)

local GodModeToggle = MainTab:CreateToggle({
Name = "God Mode (Invincible)",
CurrentValue = false,
Callback = function(Value)
local player = game.Players.LocalPlayer
if Value then
spawn(function()
while Value and task.wait(0.15) do
if player.Character and player.Character:FindFirstChild("Humanoid") then
local hum = player.Character.Humanoid
hum.MaxHealth = 1e9
hum.Health = 1e9
end
end
end)
Rayfield:Notify({
Title = "God Mode",
Content = "You're now basically immortal 🔥",
Duration = 4
})
end
end,
})

local FlyToggle = MainTab:CreateToggle({
Name = "Fly (Press F to toggle in-game)",
CurrentValue = false,
Callback = function(Value)
-- We'll handle actual fly logic below in input
_G.FlyEnabled = Value
if not Value then
local hrp = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
if hrp and hrp:FindFirstChild("AccuntFly") then hrp.AccuntFly:Destroy() end
end
end,
})

local SpeedSlider = MainTab:CreateSlider({
Name = "Walk Speed",
Range = {16, 200},
Increment = 4,
Suffix = "Speed",
CurrentValue = 32,
Callback = function(Value)
local hum = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid")
if hum then hum.WalkSpeed = Value end
end,
})

local JumpSlider = MainTab:CreateSlider({
Name = "Jump Power",
Range = {50, 300},
Increment = 10,
Suffix = "Power",
CurrentValue = 50,
Callback = function(Value)
local hum = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid")
if hum then hum.JumpPower = Value end
end,
})

local InfJumpToggle = MainTab:CreateToggle({
Name = "Infinite Jump",
CurrentValue = false,
Callback = function(Value)
_G.InfJump = Value
end,
})

local NoClipToggle = MainTab:CreateToggle({
Name = "NoClip (Walk through walls)",
CurrentValue = false,
Callback = function(Value)
_G.NoClip = Value
end,
})

-- =====================================
-- Teleports Tab
-- =====================================
local TPTab = Window:CreateTab("Teleports", 4483362458)

TPTab:CreateButton({
Name = "Teleport to Safe Roof (Lobby)",
Callback = function()
local hrp = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
if hrp then hrp.CFrame = CFrame.new(-119, 150, -119) end -- common safe spot
end,
})

TPTab:CreateButton({
Name = "Teleport to Center",
Callback = function()
local hrp = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
if hrp then hrp.CFrame = CFrame.new(0, 20, 0) end
end,
})

-- =====================================
-- Extra Tab
-- =====================================
local ExtraTab = Window:CreateTab("Extra", 4483362458)

ExtraTab:CreateButton({
Name = "Auto Vote Random Map",
Callback = function()
spawn(function()
while task.wait(8) do
local voting = game:GetService("ReplicatedStorage"):FindFirstChild("Voting")
if voting then
local maps = {"CrazyEasy", "Normal", "Hard", "Insane"} -- example map names
local rand = maps[math.random(1,#maps)]
game:GetService("ReplicatedStorage").Vote:FireServer(rand)
end
end
end)
Rayfield:Notify({Title="Auto Vote",Content="Voting random every round!",Duration=5})
end,
})

Rayfield:Notify({
Title = "Loaded Successfully!",
Content = "Enjoy surviving every disaster Accuntrobloxian! 🌋",
Duration = 6.5,
Image = 4483362458,
})

-- =====================================
-- Fly + NoClip + InfJump Logic
-- =====================================
local player = game.Players.LocalPlayer
local uis = game:GetService("UserInputService")
[ View More ]
88d79502-974f-4e46-a265-e79415883a2a.webp


God mode +F Fly speedwalk Flyspeed Goto Safety Goto lby Rayfield script by ccntrblxnroblox
 
Back
Top