-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] -- Delta Executor Script: Mobile Dash Cancel Button local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local CoreGui = game:GetService("CoreGui") -- Remove existing UI instance if already running if CoreGui:FindFirstChild("DashCancelUI") then CoreGui.DashCancelUI:Destroy() end -- Create Mobile ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "DashCancelUI" ScreenGui.Parent = CoreGui local Button = Instance.new("TextButton") Button.Name = "CancelDashButton" Button.Size = UDim2.new(0, 120, 0, 50) Button.Position = UDim2.new(0.7, 0, 0.6, 0) -- Positioned for right-thumb access Button.BackgroundColor3 = Color3.fromRGB(200, 40, 40) Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Text = "END DASH" Button.TextSize = 16 Button.Font = Enum.Font.SourceSansBold Button.Active = true Button.Draggable = true -- Allows relocating the button on mobile screens Button.Parent = ScreenGui -- Corner styling local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = Button -- Dash Cancel Execution Logic Button.MouseButton1Click:Connect(function() local char = LocalPlayer.Character if char then local hrp = char:FindFirstChild("HumanoidRootPart") local humanoid = char:FindFirstChildOfClass("Humanoid") if hrp then -- Halt all movement momentum instantly hrp.AssemblyLinearVelocity = Vector3.new(0, 0, 0) hrp.Velocity = Vector3.new(0, 0, 0) end if humanoid then -- Reset state to break dash animation locks humanoid:ChangeState(Enum.HumanoidStateType.Freefall) end end end)