local ReplicatedStorage = game:GetService("ReplicatedStorage") local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/theneutral0ne/wally-modified/refs/heads/main/wally-modified.lua"))() local Window = Library:CreateWindow("Credit: OBJ") local NoDashCD = false Window:Toggle("No Dash Cooldown", {}, function(Value) NoDashCD = Value local Configuration = ReplicatedStorage:WaitForChild("Configuration") if NoDashCD then Configuration:SetAttribute("noDashCD", true) else Configuration:SetAttribute("noDashCD", false) end end) print("[Script] No Dash Cooldown UI loaded")