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.

Dash World Noclip

Version / Update: v1.0.0
Download / Script Link
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UserInputService = game:GetService("UserInputService")

local Player = require(ReplicatedStorage.Shared.Classes.Level.Player)
local Obsidian = loadstring(game:HttpGet("https://raw.githubusercontent.com/deividcomsono/Obsidian/refs/heads/main/Library.lua"))()

local noclip = false

local oldPlayerDie
oldPlayerDie = hookfunction(Player.Die, function(...)
if noclip then
return false
end

return oldPlayerDie(...)
end)

local window = Obsidian:CreateWindow {
Title = "Dash World",
Footer = "Right Shift to toggle"
}

local tab = window:AddTab("Main")

local box = tab:AddLeftGroupbox("Player")

local noclipToggle = box:AddToggle("Noclip", {
Text = "Noclip",
Default = noclip,
Callback = function(value)
noclip = value
end
})

UserInputService.InputBegan:Connect(function(input, gameProcessed)
if input.KeyCode == Enum.KeyCode.RightShift then
Obsidian:Toggle()
end
end)
[ View More ]
46dbbfa5-98cb-42bd-84e1-b51eb7af8831.webp


free dash world noclip script
 
Back
Top